Advertisement
Guest User

Untitled

a guest
Dec 28th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. function av_custom_script_j(){
  2. ?>
  3. <script type="text/javascript">
  4. /*<![CDATA[*/
  5. (function () {
  6. var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
  7. if (window.ShopifyBuy) {
  8. if (window.ShopifyBuy.UI) {
  9. ShopifyBuyInit();
  10. } else {
  11. loadScript();
  12. }
  13. } else {
  14. loadScript();
  15. }
  16.  
  17. function loadScript() {
  18. var script = document.createElement('script');
  19. script.async = true;
  20. script.src = scriptURL;
  21. (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
  22. script.onload = ShopifyBuyInit;
  23. }
  24.  
  25. function ShopifyBuyInit() {
  26. var client = ShopifyBuy.buildClient({
  27. domain: 'mriclinic.myshopify.com',
  28. apiKey: 'a5af87bddf2cd88887f5d96e24909310',
  29. appId: '6',
  30. });
  31.  
  32. ShopifyBuy.UI.onReady(client).then(function (ui) {
  33. ui.createComponent('product', {
  34. id: [8556844481],
  35. node: document.getElementById('product-component-802bd4e805d'),
  36. moneyFormat: '%24%7B%7Bamount%7D%7D',
  37. options: {
  38. "product": {
  39. "variantId": "all",
  40. "width": "240px",
  41. "contents": {
  42. "img": false,
  43. "title": false,
  44. "variantTitle": false,
  45. "price": false,
  46. "description": false,
  47. "buttonWithQuantity": false,
  48. "quantity": false
  49. },
  50. "text": {
  51. "button": "PLACE ORDER"
  52. },
  53. "styles": {
  54. "product": {
  55. "@media (min-width: 601px)": {
  56. "max-width": "100%",
  57. "margin-left": "0",
  58. "margin-bottom": "50px"
  59. }
  60. },
  61. "title": {
  62. "font-size": "26px",
  63. "color": "#ffffff"
  64. },
  65. "price": {
  66. "font-size": "18px",
  67. "color": "#ffffff"
  68. },
  69. "compareAt": {
  70. "font-size": "15px",
  71. "color": "#ffffff"
  72. }
  73. }
  74. },
  75. "cart": {
  76. "contents": {
  77. "button": true
  78. },
  79. "styles": {
  80. "footer": {
  81. "background-color": "#ffffff"
  82. }
  83. }
  84. },
  85. "modalProduct": {
  86. "contents": {
  87. "variantTitle": false,
  88. "buttonWithQuantity": true,
  89. "button": false,
  90. "quantity": false
  91. },
  92. "styles": {
  93. "product": {
  94. "@media (min-width: 601px)": {
  95. "max-width": "100%",
  96. "margin-left": "0px",
  97. "margin-bottom": "0px"
  98. }
  99. }
  100. }
  101. },
  102. "toggle": {
  103. "styles": {
  104. "count": {
  105. "color": "#ffffff",
  106. ":hover": {
  107. "color": "#ffffff"
  108. }
  109. },
  110. "iconPath": {
  111. "fill": "#ffffff"
  112. }
  113. }
  114. },
  115. "productSet": {
  116. "styles": {
  117. "products": {
  118. "@media (min-width: 601px)": {
  119. "margin-left": "-20px"
  120. }
  121. }
  122. }
  123. }
  124. }
  125. });
  126. });
  127. }
  128. })();
  129. /*]]>*/
  130. </script>
  131. <?php
  132. }
  133. add_action('wp_footer', 'av_custom_script_j');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement