Advertisement
lorro

WooCommerce - Always show variation price

Oct 29th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.   // show variation price even if all variations are the same price
  3.   // code goes in function.php for your child theme
  4.   add_filter('woocommerce_show_variation_price', function() {
  5.     return true;
  6.   } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement