Hi All,
I am trying to hide prices on my product page and at the same time show order totals on my track your page, page. This is a page that was created.
Currently price on my product page is hidden with this html code under store settings>>currency formatting.
However this is causing the order totals on my track your order page not to show.
How can I make the price not show on the product page without it affecting the track order page
You either need to make a class and CSS for prices to only hide on products pages then add it to themes css or a global custom-css setting. https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css
i.e.
.price_hide { display: none; }
Or for the specific page force override the global behavior issue that html css class creates in that pages templates custom-css setting.
If it’s that page allows a custom-css setting just use the following CSS:
.hide { display: block !important; }
Note how “hide” is completely contrary what the display effect is this is a general clue that things are setup badly when the code required reads nonsensically.