Repository › Forums › Support › WooCommerce Pricing Rules PRO › Product Pricing Table show Percent % › Reply To: Product Pricing Table show Percent %
April 13, 2017 at 8:26 pm
#1247
Soft79
Keymaster
I just released 1.1.0 which has limited template support.
copy the file wp-content/plugins/soft79-wc-pricing-rules/templates/single-product/bulk-rule.php
to:
wp-content/themes/YOUR_CHILD_THEME/soft79-wc-pricing-rules/templates/single-product/bulk-rule.php
I commented an example on how to calculate the discount percentage:
$discount_perc = round( ( $row["price"] - $product->get_price() ) * 100 / $product->get_price() ) . ' %';
Then replace $row["price_html"];
by $discount_perc
and you’re good to go.