Hi,
I’m using the Integrity stack with WooCommerce and I’d like to know if there’s a way to increase the product thumbnail sizes in the cart only.
Hoping someone can help. Many thanks in advance.
Hi,
I’m using the Integrity stack with WooCommerce and I’d like to know if there’s a way to increase the product thumbnail sizes in the cart only.
Hoping someone can help. Many thanks in advance.
This seems to work for me.
.woocommerce .cart.shop_table .product-thumbnail img {
width: 100px;
}
Thanks! That works for me too but the resolution of the image is quite poor.
Does anyone know if there’s a way to regenerate these thumbnails at the preferred size without effecting other images on the site?
Hello There,
Thanks for writing in!
Please share website URL in a secure note. @donwattz1459 Thanks for helping fellow community member.
Thanks.
Hi Prasant,
Yes of course - but I don’t see an option to secure my post in the composition box. Do I need to post it publicly first and then secure it afterwards? The site is password protected so I also need to give you the login credentials.
Best Regards
Mark
Hi Mark,
Just click the Secure Note button at the bottom.
Thanks Thai,
I just posted the details, then clicked Secure Note afterwards thinking it would hide the entire post. I learned that this isn’t how it works so I deleted that post. Let’s try again.
Hi,
To change the image size, you need to change woocommerce product thumbnail size.
You can add this in your child theme’s functions.php so you can set it under woocommerce > settings
add_action( 'init', 'default_woocommerce_settings');
function default_woocommerce_settings() {
remove_filter( 'woocommerce_product_settings', 'x_woocommerce_remove_plugin_settings', 10 );
}
After setting the image size, you need to regenerate your thumbnails.
Hope that helps.
Thank Paul! That worked perfectly.
I didn’t need to edit the functions.php in the end - I already had access to the product thumbnail settings. I assume editing the functions.php would make the Catalog and Single Product settings available also? Is that correct?
Yes, that is correct.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.