Such an informative, jam-packed video that gives a lot of useful information. thanks for opening my eyes & mind to various ways to solving this challenge.
Hello am new here. I've got a bit of a problem. In my woocommerce store I have connected my dropshipping store but the icons on the backend of my woocommerce store are too small. Any help would be appreciated.
is there a way to resize the image without a plugin? When opening a single product, its size is too big. I tried with custom css but its not working. i also uploaded it as a smaller picture but its still being resized to a very big size.
Super helpful video! Was able to solve the blurriness on my images.
Such an informative, jam-packed video that gives a lot of useful information. thanks for opening my eyes & mind to various ways to solving this challenge.
Glad it was helpful!
Hello am new here. I've got a bit of a problem. In my woocommerce store I have connected my dropshipping store but the icons on the backend of my woocommerce store are too small. Any help would be appreciated.
is there a way to resize the image without a plugin? When opening a single product, its size is too big. I tried with custom css but its not working. i also uploaded it as a smaller picture but its still being resized to a very big size.
You can try custom code to your themes function.php file like:
add_action('after_setup_theme', 'custom_woocommerce_image_sizes');
function custom_woocommerce_image_sizes() {
add_theme_support('woocommerce', array(
'single_image_width' => 600, // Adjust single product image size
'thumbnail_image_width' => 300, // Adjust grid thumbnail size
));
}
👍👍👋
Happy to help ☺️