How to echo product price separately
-
Hi,
I do not want the default strikethrough price display of woocommerce. I would like to display product prices like this
<div id=”orig-price”>Original Price: <?php echo $price; ?></div>
<div id=”sale-price”>Sale Price: <?php echo $sale-price; ?></div>
<div id=”saved”>You saved: <?php $saved=$price-$saleprice; echo $saved; ?></div>I do not know what is the actual variable names for price, sale-price, discount-percentage, sale-end-date. Anyone knows? Anyone one who has direct link to the documentation discussing this part because I cant find it.
I tried looking at price.php but did not find it. Am I on the right file? Which file should I edit to change the single product page?
Thanks
- The topic ‘How to echo product price separately’ is closed to new replies.