Advertisement
Guest User

Untitled

a guest
Sep 26th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.81 KB | None | 0 0
  1.     <body>
  2.     <div class="container">
  3.         <div class="card" style="width: 18rem;">
  4.             <div class="card-body">
  5.  
  6.                 <a href="https://mystore.foxycart.com/cart?
  7.     name=Digital Product&
  8.     price=15&
  9.     code=digital_product">
  10.                     Add Digital Product</a>
  11.             </div>
  12.         </div>
  13.     </div>
  14.  
  15.  
  16.     <script>
  17.  
  18.         var FC = FC || {};
  19.         FC.onLoad = function () {
  20.                     FC.client.on('checkout-submit', function () {
  21.                 // Your custom code goes here.
  22.                 console.log('checkout-submit ! ')
  23.             });
  24.  
  25.             FC.client.on('customer-login', function () {
  26.                 // Your custom code goes here.
  27.                 console.log('customer-login ! ')
  28.             });
  29.         };
  30.  
  31.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement