Problem with WooCommerce Integration

Hi guys,

I am having some trouble with the Woocommerce integration in my website.
The website is:
https://body-wisdom.net/shop/

When you click on a product the Short Product Description moved under the picture for no apparent reason:

Before it was similar to what I have on my other website (https://ebeautymachines.com/shop/):

Also when you go to the shopping cart there is no picture of the product that you have selected. Before there was:

And now it’s like this:

The settings on both sides are identical from what I can see. Can you see what I’m doing wrong?

Kind regards,
Julian

Hi Julian,

Thanks for reaching out.

It’s due to this CSS

.woocommerce #content div.product div.images, .woocommerce #content div.product div.summary, .woocommerce div.product div.images, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.images, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.images, .woocommerce-page div.product div.summary {
    float: none;
    width: 100%;
}

I’m not sure where it’s added due to minification, but it overrides the theme styling for that layout. I recommend removing that CSS.

Thanks!

Thanks Rad,

I found the css code as mentioned above and indeed it solves the problem if I disable it. How do I find where this code is located in my theme though? Is there an easy way to do so?

Also what about the missing product picture in the cart? Is this also due to a problem with the css or something completely different?

Kind regards,
Julian

Hi Julian,

I couldn’t find it either due to optimization, but it’s certainly not part of the theme since it overrides the original width applied by the theme.

As for the checkout, it seems you have edited it (like a custom one). Please make sure your checkout page only contains the [woocommerce_checkout] shortcode, not with other shortcodes or content built from the builder. But, I can’t verify if that CSS is connected as well due to minification and display issue of the shortcode.

Thanks!

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