EduardET

Untitled

Jul 2nd, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         if ( $( 'body' ).hasClass( 'single-product' ) ) {
  5.             var price = $( '.et_pb_woopro_price_0 .price ins .woocommerce-Price-amount.amount' ).text(),
  6.                 currency = price.substr( price.length - 1 ),
  7.                 inter_price = price.slice( 0, -1 ).split( ',' );
  8.             new_price = inter_price[0] + '<span class="wpc-decimal">' + currency + inter_price[ 1 ] + '</span>';
  9.             $('.et_pb_woopro_price_0 .price ins .woocommerce-Price-amount.amount').html(new_price)
  10.         }
  11.     } );
  12. } )( jQuery );
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment