Plugin Directory

Changeset 3125094


Ignore:
Timestamp:
07/25/2024 09:13:03 AM (20 months ago)
Author:
piotnetdotcom
Message:

Update 2.4.30

Location:
piotnet-addons-for-elementor/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • piotnet-addons-for-elementor/trunk/inc/ajax-posts-list.php

    r2990834 r3125094  
    11<?php
     2    if ( ! defined( 'ABSPATH' ) ) { exit; }
     3   
    24    add_action( 'wp_ajax_pafe_posts_list', 'pafe_posts_list' );
    35    add_action( 'wp_ajax_nopriv_pafe_posts_list', 'pafe_posts_list' );
     
    1618            if (!empty($post_type) && !empty($posts_per_page)) {
    1719                $args['post_type'] = $post_type;           
    18                 $args['posts_per_page'] = $posts_per_page; 
     20                $args['posts_per_page'] = $posts_per_page;
     21                $args['post_status'] = 'publish';
    1922                if ( $term_id != 0 ) {
    2023                    $args['tax_query'] = array(                 
     
    2528                        ),
    2629                    );
    27                 }   
     30                }
    2831            }       
    2932?> 
  • piotnet-addons-for-elementor/trunk/inc/ajax-product-tab.php

    r2990834 r3125094  
    11<?php
     2    if ( ! defined( 'ABSPATH' ) ) { exit; }
     3
    24    add_action( 'wp_ajax_pafe_product_tabs', 'pafe_product_tabs' );
    35    add_action( 'wp_ajax_nopriv_pafe_product_tabs', 'pafe_product_tabs' );
  • piotnet-addons-for-elementor/trunk/piotnet-addons-for-elementor.php

    r3088562 r3125094  
    44 * Description: Piotnet Addons For Elementor (PAFE) adds many new features for Elementor
    55 * Plugin URI:  https://pafe.piotnet.com/
    6  * Version:     2.4.29
     6 * Version:     2.4.30
    77 * Author:      Piotnet
    88 * Author URI:  https://piotnet.com/
     
    1414if ( ! defined( 'ABSPATH' ) ) { exit; }
    1515
    16 define( 'PAFE_VERSION', '2.4.29' );
     16define( 'PAFE_VERSION', '2.4.30' );
    1717
    1818define( 'PAFE_DIR', plugin_dir_path(__FILE__));
  • piotnet-addons-for-elementor/trunk/readme.txt

    r3088562 r3125094  
    55Tested up to: 6.4.3
    66Requires PHP: 5.4
    7 Stable tag: 2.4.29
     7Stable tag: 2.4.30
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    120120
    121121== Changelog ==
     122= 2.4.30 =
     123* Fix get posts list
    122124= 2.4.29 =
    123125* Fix Escape HTML output issues
Note: See TracChangeset for help on using the changeset viewer.