AI Verified

Name

Change Product Thumbnails size

About

Change size of thumbnails in product page

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Add to functions.php on your child theme

Codevault

babisTet

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

06/12/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Change Product Thumbnails size

 
                    
1add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'override_woocommerce_image_size_gallery_thumbnail' );
2function override_woocommerce_image_size_gallery_thumbnail( $size ) {
3 return array(
4 'width' => 400,
5 'height' => 400,
6 'crop' => 0,
7 );
8}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

2

WooCommerce Change Order Received Title

Added: 1 year ago

Last Updated: 2 months ago

Customising the thank you page title is relatively straight forward and a quick win in improving your Customer Experience (CX). By default, “Order Received” is very generic and actually quite boring....

WooCommerce

Unverified

0

add shortcode returns current category URL

Added: 1 week ago

Last Updated: 1 week ago

WooCommerce

AI Verified

3

Redirect customers to own thank-you page after order

Added: 2 years ago

Last Updated: 2 months ago

You may want to redirect your customers to a custom thank you page after they place an order. You can do that with the following WooCommerce snippet

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

0

Change Product Thumbnails size

Added: 9 months ago

Last Updated: 9 months ago

Change size of thumbnails in product page