I have tried a few different suggested answers and nothing has worked so far. I cant get the price template to actually show the item price. We are using the dawn theme version 9. Any help is appreciated
I figured out a solution that worked for me, adding to my post in case it helps someone else.
I went to online store > edit code > opened the base.css file
For the item price I added this to the bottom of the code:
.price-item–regular .hidden {
display: block!important;
}
I also needed to do this for the shopping cart price:
.cart-item__price-wrapper .hidden {
display: block!important;
}
and subtotal:
.totals__subtotal-value .hidden {
display: block!important;
}
I found them by going to the webpage and inspecting the elements to get the objects’ names
