Plugin Directory

Changeset 2719958


Ignore:
Timestamp:
05/07/2022 07:43:59 PM (4 years ago)
Author:
divipeople
Message:

Update to version 1.2.6 from GitHub

Location:
wow-carousel-for-divi-lite
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wow-carousel-for-divi-lite/tags/1.2.6/includes/loader.php

    r2719790 r2719958  
    1111// Load custom Divi Builder modules.
    1212$wdc_options = get_option( 'wdc_options' );
    13 $wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'on';
     13$wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'off';
    1414
    15 if ( 'off' === $wdcl_merge || !wdcl_has_pro() ) {
     15if ( 'off' === $wdcl_merge ) {
    1616    foreach ( (array) $module_files as $module_file ) {
    1717        if ( $module_file && preg_match( "/\/modules\/\b([^\/]+)\/\\1\.php$/", $module_file ) ) {
  • wow-carousel-for-divi-lite/tags/1.2.6/readme.txt

    r2719794 r2719958  
    44Requires at least: 4.8
    55Tested up to: 6.0
    6 Stable tag: 1.2.5
     6Stable tag: 1.2.6
    77Requires PHP: 5.6
    88License: GPLv2
     
    9292
    9393== Changelog ==
     94= 1.2.6 =
     95- Fixed: Pro and Lite version conflicts
     96
    9497= 1.2.3 =
    9598- Added: Freemius SDK
  • wow-carousel-for-divi-lite/tags/1.2.6/wow-divi-carousel-lite.php

    r2719794 r2719958  
    44Plugin URI:  https://wordpress.org/plugins/wow-carousel-for-divi-lite/
    55Description: A Divi touch enabled plugin that lets you create a beautiful responsive carousel slider.
    6 Version:     1.2.5
     6Version:     1.2.6
    77Author:      DiviPeople
    88Author URI:  https://divipeople.com/
     
    3030}
    3131
    32 define( 'WDCL_PLUGIN_VERSION', '1.2.5' );
     32define( 'WDCL_PLUGIN_VERSION', '1.2.6' );
    3333define( 'WDCL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3434define( 'WDCL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • wow-carousel-for-divi-lite/trunk/includes/loader.php

    r2719790 r2719958  
    1111// Load custom Divi Builder modules.
    1212$wdc_options = get_option( 'wdc_options' );
    13 $wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'on';
     13$wdcl_merge  = isset( $wdc_options['wdcl_merge'] ) ? $wdc_options['wdcl_merge'] : 'off';
    1414
    15 if ( 'off' === $wdcl_merge || !wdcl_has_pro() ) {
     15if ( 'off' === $wdcl_merge ) {
    1616    foreach ( (array) $module_files as $module_file ) {
    1717        if ( $module_file && preg_match( "/\/modules\/\b([^\/]+)\/\\1\.php$/", $module_file ) ) {
  • wow-carousel-for-divi-lite/trunk/readme.txt

    r2719794 r2719958  
    44Requires at least: 4.8
    55Tested up to: 6.0
    6 Stable tag: 1.2.5
     6Stable tag: 1.2.6
    77Requires PHP: 5.6
    88License: GPLv2
     
    9292
    9393== Changelog ==
     94= 1.2.6 =
     95- Fixed: Pro and Lite version conflicts
     96
    9497= 1.2.3 =
    9598- Added: Freemius SDK
  • wow-carousel-for-divi-lite/trunk/wow-divi-carousel-lite.php

    r2719794 r2719958  
    44Plugin URI:  https://wordpress.org/plugins/wow-carousel-for-divi-lite/
    55Description: A Divi touch enabled plugin that lets you create a beautiful responsive carousel slider.
    6 Version:     1.2.5
     6Version:     1.2.6
    77Author:      DiviPeople
    88Author URI:  https://divipeople.com/
     
    3030}
    3131
    32 define( 'WDCL_PLUGIN_VERSION', '1.2.5' );
     32define( 'WDCL_PLUGIN_VERSION', '1.2.6' );
    3333define( 'WDCL_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3434define( 'WDCL_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.