Advertisement
businessdad

WooCommerce - Remove price suffix on product pages

Nov 10th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.25 KB | None | 0 0
  1. /**
  2.  * Removes the price suffix on the shop page.
  3.  *
  4.  * HOW TO USE THIS CODE
  5.  * Simply add the code to the bottom of your theme's functions.php file, and it
  6.  * will run automatically. For more information: https://www.skyverge.com/blog/add-custom-code-to-wordpress/
  7.  *
  8.  * GPL DISCLAIMER
  9.  * Because this code program is free of charge, there is no warranty for it, to the extent permitted by applicable law.
  10.  * Except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is"
  11.  * without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of
  12.  * merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program
  13.  * is with you. should the program prove defective, you assume the cost of all necessary servicing, repair or correction.
  14.  *
  15.  * Need a consultation, or assistance to customise this code? Find us on Codeable: https://aelia.co/hire_us
  16.  *
  17.  * @param string value The original value.
  18.  * @param WC_Product product
  19.  * @return string
  20.  */
  21. add_filter('woocommerce_get_price_suffix', function($price_suffix, $product) {
  22.   if(is_shop()) {
  23.     $price_suffix = '';
  24.   }
  25.   return $price_suffix;
  26. }, 99, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement