Advertisement
lorro

WooCommerce - Set a nil-price message

May 21st, 2015
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.   // code goes in functions.php for your child theme
  3.   // output a message if the product price is nil
  4.   add_filter('woocommerce_empty_price_html', 'nil_price_message');
  5.   function nil_price_message() {
  6.     return 'Ring for price';
  7.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement