Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter('wc_price_args', 'wc_force_decimals_for_price_display');
  2. function wc_force_decimals_for_price_display($args) {
  3. if (isset($args['force_decimals'])) {
  4. $args['decimals'] = $args['force_decimals'];
  5. } else {
  6. $args['decimals'] = 2;
  7. }
  8.  
  9. return $args;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement