Changeset 3363831
- Timestamp:
- 09/18/2025 09:08:03 AM (6 months ago)
- Location:
- ecommerce-product-catalog/trunk
- Files:
-
- 4 edited
-
ecommerce-product-catalog.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
templates/template-parts/product-page/product-size.php (modified) (1 diff)
-
theme-product_adder_support.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ecommerce-product-catalog/trunk/ecommerce-product-catalog.php
r3362982 r3363831 4 4 * Plugin URI: https://implecode.com/wordpress/product-catalog/#cam=in-plugin-urls&key=plugin-url 5 5 * Description: Easy to use, powerful and beautiful WordPress eCommerce plugin from impleCode. A Great choice if you want to sell easy and quick. Or beautifully present your products on a WordPress website. Full WordPress integration does a great job not only for Merchants but also for Developers and Theme Constructors. 6 * Version: 3.4. 86 * Version: 3.4.9 7 7 * Author: impleCode 8 8 * Author URI: https://implecode.com/#cam=in-plugin-urls&key=author-url -
ecommerce-product-catalog/trunk/readme.txt
r3362982 r3363831 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 3.4. 88 Stable tag: 3.4.9 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 390 390 Use [EPC Translate Project](https://translate.wordpress.org/projects/wp-plugins/ecommerce-product-catalog "eCommerce Product Catalog Translation Project") to add new or fix the existing translations in eCommerce Product Catalog. Use [Premium EPC Translation Project](https://translate.implecode.com/projects/ "eCommerce Product Catalog Translation Project") for all the extensions. 391 391 392 = 3.4.9 - 18/09/2025 = 393 394 * Fix the size display issue on the product page 395 392 396 = 3.4.8 - 17/09/2025 = 393 397 -
ecommerce-product-catalog/trunk/templates/template-parts/product-page/product-size.php
r3362982 r3363831 14 14 */ 15 15 $product_id = ic_get_product_id(); 16 $size = ic_get_product_size( $product_id , true);17 if ( is_ic_attributes_size_enabled() && ! empty( $size ) ) {16 $size = ic_get_product_size( $product_id ); 17 if ( is_ic_attributes_size_enabled() && ! empty( $size ) && is_string( $size ) ) { 18 18 ?> 19 19 -
ecommerce-product-catalog/trunk/theme-product_adder_support.php
r3359160 r3363831 291 291 var data = { 292 292 'action': 'ic_add_catalog_shortcode', 293 'nonce': <?php echo wp_create_nonce( 'ic-ajax-nonce' ) ?>293 'nonce': '<?php echo wp_create_nonce( 'ic-ajax-nonce' ) ?>' 294 294 }; 295 295 jQuery(this).prop("disabled", true);
Note: See TracChangeset
for help on using the changeset viewer.