Guest User

Untitled

a guest
May 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. add_action( 'wp_footer', 'prefix_hide_the_card_form' );
  2. function prefix_hide_the_card_form() {
  3. // Checkout or the Pay page
  4. if ( is_checkout() || is_checkout_pay_page() ) {
  5. ?>
  6. <style>
  7. .payment_method_psigate div#credit_card_info {
  8. display: none !important;
  9. }
  10.  
  11. div#psigate_payment_choices_wrapper {
  12. display: none;
  13. }
  14. </style>
  15.  
  16. <script type="text/javascript">
  17. (function ($) {
  18. $(document).ready(function () {
  19. $('#order_review #psigate_payment_choices_wrapper #psigate_interac_online_choice').click();
  20. });
  21.  
  22. $(document.body).on('updated_checkout', function () {
  23. $('#order_review #psigate_payment_choices_wrapper #psigate_interac_online_choice').click();
  24. });
  25.  
  26. })(jQuery);
  27. </script>
  28. <?php
  29. }
  30. }
Add Comment
Please, Sign In to add comment