php - WooCommerce - Percentage Discount in products categories widget -
need custom output of woocommerce products categories widget showing percentage discount category (discount_price*100/standard_price).
can create function takes first product of category:
- discount price
- standard price
and calculate percentage discount, don't know how show in output of widget this:
- first category (50% discount)
- second category (30% discount)
can me?
thanks
looks entry point filter woocommerce_product_categories_widget_args
. output done via wp_list_categories
, guess you'll have custom walker achieve want. or duplicate widget code , make custom one.
Comments
Post a Comment