Advertisement
GochiSiyan

Subscription direct checkout

Jan 10th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. (function($){
  2. $('.jpw-wrapper .button').off().on('click',function(e){
  3. e.preventDefault();
  4. $.ajax({
  5. url:jnews_ajax_url,
  6. type:'post',
  7. dataType:'json',
  8. data:{product_id:$(this).attr('data-product_id'),
  9. action: 'add_paywall_product'
  10. }}).done(function (data){
  11. if(data.redirect){
  12. window.location.href=data.redirect
  13. }else{
  14. location.reload()
  15. }
  16. }
  17. )
  18. });
  19. })(jQuery)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement