Plugin Directory

Changeset 2528983


Ignore:
Timestamp:
05/10/2021 10:07:00 AM (5 years ago)
Author:
codelessthemes
Message:

Updating version 1.0.9

Location:
cowidgets-elementor-addons/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cowidgets-elementor-addons/trunk/cowidgets.php

    r2528338 r2528983  
    88 * Text Domain: cowidgets
    99 * Domain Path: /languages
    10  * Version: 1.0.8
     10 * Version: 1.0.9
    1111 *
    1212 * @package         cowidgets
    1313 */
    1414
    15 define( 'COWIDGETS_VER', '1.0.8' );
     15define( 'COWIDGETS_VER', '1.0.9' );
    1616define( 'COWIDGETS_DIR', plugin_dir_path( __FILE__ ) );
    1717define( 'COWIDGETS_URL', plugins_url( '/', __FILE__ ) );
  • cowidgets-elementor-addons/trunk/inc/widgets-manager/widgets/content/class-ce-portfolio-grid.php

    r2527993 r2528983  
    660660                        $new_query = array(
    661661                            'post__in' => $this->get_gallery_image_ids( $settings['items_gallery'] ),
    662                            
     662                            'post_status' => 'any',
    663663                            'orderby' => 'post__in',
    664664                            'post_type' => 'attachment',
     
    668668                       
    669669                    }
    670 
     670                   
     671                   
    671672                    $the_query = new \WP_Query( $new_query );
    672                    
     673               
    673674                    if ( is_object( $the_query ) && $the_query->have_posts() ) :
    674675                        $counter = 0;
     
    676677                        // used for separate items with columns in HTML
    677678                        $column1 = $column2 = $column3 = '';
    678 
     679                   
    679680                        // Start loop
    680681                        while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    681682                            <?php
     683                               
    682684                                $counter += 1;
    683685                                $delay = ( $counter * (int) $settings['ce_animation_delay'] );
  • cowidgets-elementor-addons/trunk/readme.txt

    r2528338 r2528983  
    8787== Changelog ==
    8888
     89= 1.0.9 =
     90* Fixed: Portfolio Grid from Gallery Images not working
     91
     92= 1.0.8 =
     93* Fixed: Fatal Error
     94
    8995= 1.0.7 =
    9096* Added: New Podcast Elements
Note: See TracChangeset for help on using the changeset viewer.