Guest User

Untitled

a guest
Apr 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter( 'woocommerce_get_price_html', 'loc_woo_add_product_unit_after_prie' );
  2. add_filter( 'woocommerce_cart_item_price', 'loc_woo_add_product_unit_after_prie' );
  3.  
  4. function loc_woo_add_product_unit_after_prie( $price ) {
  5.  
  6. $price .= ' per litre';
  7. return $price;
  8. }
Add Comment
Please, Sign In to add comment