Product totals not showing in Woocommerce cart

I am having an issue with product prices and subtotal not showing on the cart page with X-Theme. If I switch to the standard Twenty-Seventeen theme, the prices and totals are displayed properly.

Please see screenshots below.

X theme:

TwentySeventeen theme:

https://agcguild.org/cart/

Hi there,

There is a code in the custom CSS added in the Theme Options that is hiding the total amount:

.woocommerce-Price-amount { display: none !important;
}

Please find and remove it in the custom CSS.

Hope this helps.

Thanks for the quick response! I am a little embarrassed that I overlooked that. I had added that code because I was trying to hide the price tags that the visual composer “add to cart” buttons displays. What is the best way to do that?

I figured it out.

.product.woocommerce .amount {
display:none;
}

Hi,

Glad to hear you were able to figure it out. Have a nice day! :slight_smile:

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