Changeset 3415764
- Timestamp:
- 12/09/2025 08:08:10 PM (4 months ago)
- Location:
- ultimate-product-catalogue
- Files:
-
- 8 edited
- 1 copied
-
tags/5.3.10 (copied) (copied from ultimate-product-catalogue/trunk)
-
tags/5.3.10/assets/js/ewd-upcp.js (modified) (1 diff)
-
tags/5.3.10/readme.txt (modified) (2 diffs)
-
tags/5.3.10/ultimate-product-catalogue.php (modified) (2 diffs)
-
tags/5.3.10/views/View.SingleProduct.class.php (modified) (1 diff)
-
trunk/assets/js/ewd-upcp.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ultimate-product-catalogue.php (modified) (2 diffs)
-
trunk/views/View.SingleProduct.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-product-catalogue/tags/5.3.10/assets/js/ewd-upcp.js
r3408426 r3415764 399 399 jQuery( this ).toggleClass( 'ewd-upcp-taxonomy-collapsible-children-hidden' ); 400 400 401 jQuery( this ).parent().next().toggle ( 'ewd-upcp-hidden' );401 jQuery( this ).parent().next().toggleClass( 'ewd-upcp-hidden' ); 402 402 } ); 403 403 -
ultimate-product-catalogue/tags/5.3.10/readme.txt
r3408426 r3415764 3 3 Tags: catalog, product catalog, product, catalogue, woocommerce, products, catalogue, catalogs, catalogues, catalog plugin, woocommerce product catalog, woocommerce catalog, woocommerce checkout, woocommerce products 4 4 Tested up to: 6.9 5 Stable tag: 5.3. 95 Stable tag: 5.3.10 6 6 License: GPLv3 7 7 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 216 216 == Changelog == 217 217 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 218 222 = 5.3.9 (2025-12-02) = 219 223 - 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 4 4 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-product-catalog/ 5 5 * 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. 96 * Version: 5.3.10 7 7 * Author: Etoile Web Design 8 8 * Author URI: https://www.etoilewebdesign.com/ … … 63 63 define( 'EWD_UPCP_PLUGIN_FNAME', plugin_basename( __FILE__ ) ); 64 64 define( 'EWD_UPCP_TEMPLATE_DIR', 'ewd-upcp-templates' ); 65 define( 'EWD_UPCP_VERSION', '5.3. 9' );65 define( 'EWD_UPCP_VERSION', '5.3.10' ); 66 66 67 67 define( 'EWD_UPCP_PRODUCT_POST_TYPE', 'upcp_product' ); -
ultimate-product-catalogue/tags/5.3.10/views/View.SingleProduct.class.php
r3345301 r3415764 135 135 global $ewd_upcp_controller; 136 136 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' ); 138 138 } 139 139 -
ultimate-product-catalogue/trunk/assets/js/ewd-upcp.js
r3408426 r3415764 399 399 jQuery( this ).toggleClass( 'ewd-upcp-taxonomy-collapsible-children-hidden' ); 400 400 401 jQuery( this ).parent().next().toggle ( 'ewd-upcp-hidden' );401 jQuery( this ).parent().next().toggleClass( 'ewd-upcp-hidden' ); 402 402 } ); 403 403 -
ultimate-product-catalogue/trunk/readme.txt
r3408426 r3415764 3 3 Tags: catalog, product catalog, product, catalogue, woocommerce, products, catalogue, catalogs, catalogues, catalog plugin, woocommerce product catalog, woocommerce catalog, woocommerce checkout, woocommerce products 4 4 Tested up to: 6.9 5 Stable tag: 5.3. 95 Stable tag: 5.3.10 6 6 License: GPLv3 7 7 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 216 216 == Changelog == 217 217 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 218 222 = 5.3.9 (2025-12-02) = 219 223 - 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 4 4 * Plugin URI: https://www.etoilewebdesign.com/plugins/ultimate-product-catalog/ 5 5 * 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. 96 * Version: 5.3.10 7 7 * Author: Etoile Web Design 8 8 * Author URI: https://www.etoilewebdesign.com/ … … 63 63 define( 'EWD_UPCP_PLUGIN_FNAME', plugin_basename( __FILE__ ) ); 64 64 define( 'EWD_UPCP_TEMPLATE_DIR', 'ewd-upcp-templates' ); 65 define( 'EWD_UPCP_VERSION', '5.3. 9' );65 define( 'EWD_UPCP_VERSION', '5.3.10' ); 66 66 67 67 define( 'EWD_UPCP_PRODUCT_POST_TYPE', 'upcp_product' ); -
ultimate-product-catalogue/trunk/views/View.SingleProduct.class.php
r3345301 r3415764 135 135 global $ewd_upcp_controller; 136 136 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' ); 138 138 } 139 139
Note: See TracChangeset
for help on using the changeset viewer.