Skip to main content
Articles

Disable WooCommerce Product Image Zoom

1
0

I hate WooCommerce. It’s the best most horrible e-commerce option in the world.

Reminder: how to disable product image zoom on single posts:


function custom_single_product_image_html( $html, $post_id ) {
    $post_thumbnail_id = get_post_thumbnail_id( $post_id );
    return get_the_post_thumbnail( $post_thumbnail_id, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ) );
}
add_filter('woocommerce_single_product_image_thumbnail_html', 'custom_single_product_image_html', 10, 2);

Corner Icon Render
Corner Icon Render
Corner Icon Render
Corner Icon Render How Can I Help You?