Guest User

Untitled

a guest
Apr 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var $price = $(".woocommerce-Price-amount");
  2. $price.each(function(index, item) {
  3. var $this = $(item);
  4. var text = $this.clone().children().remove().end().text();
  5. var $currency = $this.find(".woocommerce-Price-currencySymbol");
  6.  
  7. $this.html(Number(text.replace(/[^0-9\.-]+/g,""))).append($currency);
  8. });
Add Comment
Please, Sign In to add comment