Solution for : Show original image rather than thumbnail for product on shop page in woocommerce
1 2 3 4 5 6 7 8 | //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 '<img src="' . $imgurl [0] . '">' ; } |
No comments:
Post a Comment