The icon size specs do not match the settings.
-
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.
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
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' );
}
});
It’s working. Thank you. 🙂
The topic ‘The icon size specs do not match the settings.’ is closed to new replies.