Problem with the product image woocommmerce

Hi,

My URL: http://moblesgifreu.com

I have three questions about my page

1.- red probleme ( the image product is too small)
2.- blue probleme ( if the image produccte is bigger the descriptions needs to chage the position)
3.- green probleme ( is it possible introduce space between thumbnails )

Hello There,

Thanks for writing in!

  1. You can refer following resource to fix image dimensions problem:
  1. Can you please let us know where you want to position product description?

  2. You can add following CSS to add spacing between thumbnail images:

    .flex-control-nav.flex-control-thumbs li {
    margin-bottom: 10px;
    }

Let us know how it goes.

Thanks.

Hello,

About 3)

Thaks

Hello .

About 1)

Sorry , I use a plugin ( “responsive lightbox”) . Can this plugin be the problem ?

Hi There,

We’re sorry for the confusion. Please add this code on your child theme functions.php file.

      // Do Not Remove Woocommerce Plugin Settings
     // =============================================================================
        function x_woocommerce_donot_remove_plugin_setting(){
            if ( ! is_admin() ) {
               return;
            }
            remove_filter( 'woocommerce_product_settings', 'x_woocommerce_remove_plugin_settings', 10 
        );
        }
        add_action('init', 'x_woocommerce_donot_remove_plugin_setting');

Those settings was remove by the theme because on previous Woocommerce version product page image is using theme image settings. Since Woocommerce 3.0, there’s a lot of changes and it is now back on using woocommerce settings. Those custom code will give you those settings back. Regenerate after.

Hello, thaks ! Those custom code has given me the settings back and I regenerated the Images but the appearance is not yet what we want

Can you help us, please ? ( see Attached image )

Hello There,

To change the appearance of the product images, please check out this thread:

Please let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.