Product details not showing up consistently

Product details not showing up consistently from listing to cart, how do I make the listings consistent across the items, and the cart? You will see that headlines are not being called in and the associated prodyct details and styling also are not.


Help, please!

HI @paullalley,

The data that is showing on both Shop and Cart page are controlled by Woocommerce and not by the theme. We do have customization on the styling of the containers, but we did not remove any data. Adding it is possible by customization, but that will be outside the scope of our support. I can guide you though on the template. Default woocommerce templates can be found here:
wp-content/plugins/woocommerce/templates
In case you want to edit/update certain template, add it here:
wp-content/themes/pro-child/woocommerce/
You need to create woocommerce folder if it doesn’t exist yet.

Regarding styling, we can help you with the adjusment. Add this custom CSS on Theme Options > Global CSS

.cart td.product-name>a {
    padding-bottom: 0em;
    font-size: 1.8em;
    line-height: 1.05;
    font-family: "Nunito Sans",sans-serif;
    font-style: normal;
    font-weight: 900;
    color: #272727;
}
.cart td.product-name a:hover {
    color: #ff2a13;
}
.cart td.product-name dt, .cart td.product-name dd {
    display: inline;
    font-weight: 400;
    float: left;
   font-style: italic;
}
.cart span.woocommerce-Price-amount.amount {
    font-size: 1.6em;
    color: #ff2a13;
    font-weight: 700;
}

Hope this helps.

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