Arshard
Member
- Jun 1, 2020
- 60
- 17
- 8
Code snippet to remove price on options
Just add to child themes functions.php
add_filter('wapf/html/pricing_hint','wapf_remove_pricing_hint',10,4);
function wapf_remove_pricing_hint($price_hint,$product,$amt,$type) {
return '';
}
thanks for this it works great @freddy21
do you have code snippet for pricing summary
product total option total grand total section
Last edited: