Plugin Directory

Changeset 3415764


Ignore:
Timestamp:
12/09/2025 08:08:10 PM (4 months ago)
Author:
Rustaurius
Message:

v5.3.10 released and tagged

Location:
ultimate-product-catalogue
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ultimate-product-catalogue/tags/5.3.10/assets/js/ewd-upcp.js

    r3408426 r3415764  
    399399        jQuery( this ).toggleClass( 'ewd-upcp-taxonomy-collapsible-children-hidden' );
    400400
    401         jQuery( this ).parent().next().toggle( 'ewd-upcp-hidden' );
     401        jQuery( this ).parent().next().toggleClass( 'ewd-upcp-hidden' );
    402402    } );
    403403
  • ultimate-product-catalogue/tags/5.3.10/readme.txt

    r3408426 r3415764  
    33Tags: catalog, product catalog, product, catalogue, woocommerce, products, catalogue, catalogs, catalogues, catalog plugin, woocommerce product catalog, woocommerce catalog, woocommerce checkout, woocommerce products
    44Tested up to: 6.9
    5 Stable tag: 5.3.9
     5Stable tag: 5.3.10
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    216216== Changelog ==
    217217
     218= 5.3.10 (2025-12-09) =
     219- Fix: Default label not being applied to the Add to Cart button on the product page.
     220- Fix: Collapsible sidebar not expanding in certain instances.
     221
    218222= 5.3.9 (2025-12-02) =
    219223- Added the ability to close an open tab on the product page by clicking on it.
  • ultimate-product-catalogue/tags/5.3.10/ultimate-product-catalogue.php

    r3408426 r3415764  
    44 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-product-catalog/
    55 * Description: Add a product catalog to your site with blocks or shortcodes. Works with WooCommerce or standalone. Flexible and customizable, works with any theme.
    6  * Version: 5.3.9
     6 * Version: 5.3.10
    77 * Author: Etoile Web Design
    88 * Author URI: https://www.etoilewebdesign.com/
     
    6363        define( 'EWD_UPCP_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
    6464        define( 'EWD_UPCP_TEMPLATE_DIR', 'ewd-upcp-templates' );
    65         define( 'EWD_UPCP_VERSION', '5.3.9' );
     65        define( 'EWD_UPCP_VERSION', '5.3.10' );
    6666
    6767        define( 'EWD_UPCP_PRODUCT_POST_TYPE', 'upcp_product' );
  • ultimate-product-catalogue/tags/5.3.10/views/View.SingleProduct.class.php

    r3345301 r3415764  
    135135        global $ewd_upcp_controller;
    136136
    137         return $ewd_upcp_controller->settings->get_setting( 'woocommerce-checkout' ) ? $ewd_upcp_controller->settings->get_setting( 'label-add-to-cart-button' ) : $ewd_upcp_controller->settings->get_setting( 'label-inquire-button' );
     137        return $ewd_upcp_controller->settings->get_setting( 'woocommerce-checkout' ) ? $this->get_label( 'label-add-to-cart-button' ) : $this->get_label( 'label-inquire-button' );
    138138    }
    139139
  • ultimate-product-catalogue/trunk/assets/js/ewd-upcp.js

    r3408426 r3415764  
    399399        jQuery( this ).toggleClass( 'ewd-upcp-taxonomy-collapsible-children-hidden' );
    400400
    401         jQuery( this ).parent().next().toggle( 'ewd-upcp-hidden' );
     401        jQuery( this ).parent().next().toggleClass( 'ewd-upcp-hidden' );
    402402    } );
    403403
  • ultimate-product-catalogue/trunk/readme.txt

    r3408426 r3415764  
    33Tags: catalog, product catalog, product, catalogue, woocommerce, products, catalogue, catalogs, catalogues, catalog plugin, woocommerce product catalog, woocommerce catalog, woocommerce checkout, woocommerce products
    44Tested up to: 6.9
    5 Stable tag: 5.3.9
     5Stable tag: 5.3.10
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    216216== Changelog ==
    217217
     218= 5.3.10 (2025-12-09) =
     219- Fix: Default label not being applied to the Add to Cart button on the product page.
     220- Fix: Collapsible sidebar not expanding in certain instances.
     221
    218222= 5.3.9 (2025-12-02) =
    219223- Added the ability to close an open tab on the product page by clicking on it.
  • ultimate-product-catalogue/trunk/ultimate-product-catalogue.php

    r3408426 r3415764  
    44 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-product-catalog/
    55 * Description: Add a product catalog to your site with blocks or shortcodes. Works with WooCommerce or standalone. Flexible and customizable, works with any theme.
    6  * Version: 5.3.9
     6 * Version: 5.3.10
    77 * Author: Etoile Web Design
    88 * Author URI: https://www.etoilewebdesign.com/
     
    6363        define( 'EWD_UPCP_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
    6464        define( 'EWD_UPCP_TEMPLATE_DIR', 'ewd-upcp-templates' );
    65         define( 'EWD_UPCP_VERSION', '5.3.9' );
     65        define( 'EWD_UPCP_VERSION', '5.3.10' );
    6666
    6767        define( 'EWD_UPCP_PRODUCT_POST_TYPE', 'upcp_product' );
  • ultimate-product-catalogue/trunk/views/View.SingleProduct.class.php

    r3345301 r3415764  
    135135        global $ewd_upcp_controller;
    136136
    137         return $ewd_upcp_controller->settings->get_setting( 'woocommerce-checkout' ) ? $ewd_upcp_controller->settings->get_setting( 'label-add-to-cart-button' ) : $ewd_upcp_controller->settings->get_setting( 'label-inquire-button' );
     137        return $ewd_upcp_controller->settings->get_setting( 'woocommerce-checkout' ) ? $this->get_label( 'label-add-to-cart-button' ) : $this->get_label( 'label-inquire-button' );
    138138    }
    139139
Note: See TracChangeset for help on using the changeset viewer.