I have a $5 discount set on all products and currently the price for a product is displayed with the following HTML:
<span class="hikashop_product_price"><span class="hikashop_product_price">39.00</span><span class="hikashop_product_price_before_discount">44.00</span> per ticket</span>
however I would like to switch it to show the initial price, crossed out (which it currently does), before the final price with the discount, like this:
<span class="hikashop_product_price"><span class="hikashop_product_price_before_discount">44.00</span><span class="hikashop_product_price">39.00</span> per ticket</span>
Is there a template or PHP/HTML file I can edit somewhere that will allow me to make this quick change? I'm very familiar with PHP and HTML so I have no problem editing any source code. Thanks in advance!