Solution for : Show original image rather than thumbnail for product on shop page in woocommerce
//show full image on wocommerece list items
remove_action('woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10);
add_action('woocommerce_before_shop_loop_item_title', 'new_woocommerce_template_loop_product_thumbnail', 10);
function new_woocommerce_template_loop_product_thumbnail() {
$imgurl= wp_get_attachment_image_src(get_post_thumbnail_id(), 'full');
echo '
';
}

No comments:
Post a Comment