Plugin Directory

Changeset 3363831


Ignore:
Timestamp:
09/18/2025 09:08:03 AM (6 months ago)
Author:
impleCode
Message:
  • Fix the size display issue on the product page
Location:
ecommerce-product-catalog/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ecommerce-product-catalog/trunk/ecommerce-product-catalog.php

    r3362982 r3363831  
    44 * Plugin URI: https://implecode.com/wordpress/product-catalog/#cam=in-plugin-urls&key=plugin-url
    55 * 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.8
     6 * Version: 3.4.9
    77 * Author: impleCode
    88 * Author URI: https://implecode.com/#cam=in-plugin-urls&key=author-url
  • ecommerce-product-catalog/trunk/readme.txt

    r3362982 r3363831  
    66Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 3.4.8
     8Stable tag: 3.4.9
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    390390Use [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.
    391391
     392= 3.4.9 - 18/09/2025 =
     393
     394* Fix the size display issue on the product page
     395
    392396= 3.4.8 - 17/09/2025 =
    393397
  • ecommerce-product-catalog/trunk/templates/template-parts/product-page/product-size.php

    r3362982 r3363831  
    1414 */
    1515$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 );
     17if ( is_ic_attributes_size_enabled() && ! empty( $size ) && is_string( $size ) ) {
    1818    ?>
    1919
  • ecommerce-product-catalog/trunk/theme-product_adder_support.php

    r3359160 r3363831  
    291291                var data = {
    292292                    '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' ) ?>'
    294294                };
    295295                jQuery(this).prop("disabled", true);
Note: See TracChangeset for help on using the changeset viewer.