Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'wp_footer', 'show_price' );
  4. function show_price() {
  5. ?>
  6. <script type="text/javascript">
  7. jQuery(function($) {
  8. $(document).on('click', '.choose-plan-button', function() {
  9. var price = $(this).closest('ul').find('.summary .price:visible .plan-price').text();
  10. if($('.price_custom_label').length)
  11. $('.price_custom_label').html(price);
  12. else{
  13. if( $('#psts-cc-table tbody').length ){
  14. $('#psts-cc-table tbody').prepend('<tr><td class="pypl_label" align="right">Price</td><td class="price_custom_label">'+ price +'</td></tr>');
  15. }
  16. else{
  17. $('#psts-cc-table').prepend('<tr><td class="pypl_label" align="right">Price</td><td class="price_custom_label">'+ price +'</td></tr>');
  18. }
  19.  
  20. }
  21. });
  22. });
  23. </script>
  24. <?php
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement