Skip to main content
FolksSpeakersPluginsThemesEventsSnippetsShippedCommunityResources
Login Join
Snippet · PHP

Show Full Size Product Images in Shop Page

Shared by Nikul Valani · May 3, 2026 · @single_product_archive_thumbnail_size

2 views
Back to Snippets

Overrides the default WooCommerce product archive image size and forces it to load the full image size. Useful when you want higher-quality images displayed without cropping or resizing.

add_filter('single_product_archive_thumbnail_size', function ($size) {
    return 'full';
}, 1000);