Advertisement
bastetmilo

Untitled

Jul 10th, 2016
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <?php
  2. add_action( 'wp_footer', 'wpmudev_removedoubleddahs' );
  3. function wpmudev_removedoubleddahs() {
  4.     ?>
  5.     <script type="text/javascript">
  6.       jQuery(document).ready(function() {
  7.         var val = jQuery(".mp_cart_resume_item_amount-total").html();
  8.         jQuery(".mp_cart_resume_item_amount-total").html(val.substring(1, val.length));
  9.         var val = jQuery(".mp_cart_coupon .mp_cart_resume_item_amount").html();
  10.         jQuery(".mp_cart_coupon .mp_cart_resume_item_amount").html(val.substring(1, val.length));
  11.       });
  12.     </script>
  13.     <?php
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement