Home Forums WoodMart support forum The icon size specs do not match the settings.

The icon size specs do not match the settings.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #496271

    dktechnologymaster
    Participant

    The icon size specs do not match the settings.

    url : https://dktechnology.co.th/product/stabilizer-dk-3000/

    Attachments:
    You must be logged in to view attached files.
    #496283

    Artem Temos
    Keymaster

    Hello,

    Please, disable all plugins that are not related to our theme and provide us with your admin access. We will log in and check what is wrong there. You can leave only the following plugins that are required for our theme:
    WoodMart core
    WooCommerce
    Elementor/WPBakery page builder

    Thank you in advance

    #496419

    dktechnologymaster
    Participant

    thank you 🙂

    #496432

    Artem Temos
    Keymaster

    Try to add the following PHP code snippet to the child theme functions.php file to fix this

    add_action( 'elementor/frontend/widget/before_render', function ($el) {
        if ( is_object( $el ) && 'wd_single_product_additional_info_table' === $el->get_name() ) {
           add_filter( 'wp_calculate_image_srcset', '__return_empty_array' );
           add_filter( 'wp_calculate_image_sizes', '__return_empty_array' );
        }
    });
    
    add_action( 'elementor/frontend/widget/after_render', function ($el) {
        if ( is_object( $el ) && 'wd_single_product_additional_info_table' === $el->get_name() ) {
           remove_filter( 'wp_calculate_image_sizes', '__return_empty_array' );
           remove_filter( 'wp_calculate_image_srcset', '__return_empty_array' );
        }
    });
    #496448

    dktechnologymaster
    Participant

    It’s working. Thank you. 🙂

    #496847

    Artem Temos
    Keymaster

    You are always welcome.

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘The icon size specs do not match the settings.’ is closed to new replies.