Plugin Directory

Changeset 3249170


Ignore:
Timestamp:
03/02/2025 11:07:49 AM (11 months ago)
Author:
shamimmoeen
Message:

Releasing v4.2.3

Location:
wc-ajax-product-filter/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wc-ajax-product-filter/trunk/includes/class-wcapf-api-utils.php

    r2958786 r3249170  
    253253
    254254        foreach ( $final_array as $name ) {
     255            if ( ! isset( $tax_data[ $name ] ) ) {
     256                continue; // Skip undefined taxonomies to prevent errors caused by unregistered taxonomies.
     257            }
     258
    255259            if ( $only_with_archive && ( ! is_taxonomy_viewable( $name ) || 'product_shipping_class' === $name ) ) {
    256260                continue;
  • wc-ajax-product-filter/trunk/readme.txt

    r3225151 r3249170  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 4.2.2
     6Stable tag: 4.2.3
    77Requires PHP: 7.2
    88License: GPLv3
     
    175175== Changelog ==
    176176
     177= 4.2.3 (2 March 2025) =
     178* Fix – Prevent errors by skipping undefined taxonomies when they are unregistered
     179
    177180= 4.2.2 (20 January 2025) =
    178181
  • wc-ajax-product-filter/trunk/wc-ajax-product-filter.php

    r3225151 r3249170  
    44 * Plugin URI:        https://wptools.io/wc-ajax-product-filter/?utm_source=plugins+listing&utm_medium=wcapf+free&utm_campaign=WCAPF+Pro+Details
    55 * Description:       A plugin to filter WooCommerce products with AJAX request.
    6  * Version:           4.2.2
     6 * Version:           4.2.3
    77 * Requires at least: 6.0
    88 * Requires PHP:      7.2
     
    3636// Defines constant WCAPF_VERSION
    3737if ( ! defined( 'WCAPF_VERSION' ) ) {
    38     define( 'WCAPF_VERSION', '4.2.2' );
     38    define( 'WCAPF_VERSION', '4.2.3' );
    3939}
    4040
Note: See TracChangeset for help on using the changeset viewer.