Advertisement
meetsos

Disable Variable Product Price Range Completely

Jan 12th, 2017
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. add_filter( 'woocommerce_variable_sale_price_html', 'my_remove_variation_price', 10, 2 );
  3. add_filter( 'woocommerce_variable_price_html', 'my_remove_variation_price', 10, 2 );
  4.  
  5. function my_remove_variation_price( $price ) {
  6. $price = '';
  7. return $price;
  8. }
  9. // https://www.templatemonster.com/help/woocommerce-how-to-remove-variable-products-available-price-range.html
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement