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.