Advertisement
leonanluppi

Untitled

Feb 21st, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. const form = document.querySelector('div[data-section-id="cart-template"] > form.cart');
  2. const domainShop = Shopify && Shopify.shop || '';
  3. if (domainShop) {
  4. console.log('DOMINIO', domainShop)
  5. form.onsubmit = function() { form.action = `http://localhost:3000/checkout/?shop=${domainShop}` };
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement