Hey guys! After updating to the latest versions of the X theme and Cornerstone plugin, I noticed the menu Cart being all white, so after inspecting it a bit, I noticed it ended up being the following:
After Update:
<span data-x-wc-fragment="total"><span class="woocommerce-Price-amount amount"><bdi>0.00<span class="woocommerce-Price-currencySymbol">$</span></bdi></span></span>
instead or what it used to be, namely:
Before Update:
<span class="outer" data-x-wc-classic="total"><span class="woocommerce-Price-amount amount"><bdi>0.00<span class="woocommerce-Price-currencySymbol">$</span></bdi></span></span>
Right after the “span”, the update is missing class=“outer”, and adding that (through Inspect element) completely fixes the issue.
Any idea as to how I can also add this to the theme? Thank you!