Hello everyone ,
I have the following problem.
On Category Overview page I have a Thumb Image which is cropped in format 500x321px, but I want to keep the image in original size. Can you help me? Unfortunately I can’t find a solution.
Hi Alex,
Please add this code in functions.php of your child theme, if you don’t have a child theme then you can use the plugin called WPCode to insert this code snippet:
add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
return 'full';
}
Hope it helps.
Best regards,
Nikko