annavdburgt Posted September 26, 2021 Posted September 26, 2021 Site URL: http://koekenboer.be Hi there! I am a complete leek in building websites. If I put in the code that ecwid provides for the shopping cart, in my case: <div class='ec-cart-widget'></div>, it will appear on the left underneed my logo, plus I am not able to click on it. Can anyone help me what to do to get it to work and get in line with the menu on the top right of the site? Thank you in advance! Kind Regards
Beyondspace Posted September 27, 2021 Posted September 27, 2021 19 hours ago, annavdburgt said: Site URL: http://koekenboer.be Hi there! I am a complete leek in building websites. If I put in the code that ecwid provides for the shopping cart, in my case: <div class='ec-cart-widget'></div>, it will appear on the left underneed my logo, plus I am not able to click on it. Can anyone help me what to do to get it to work and get in line with the menu on the top right of the site? Thank you in advance! Kind Regards Did you include the script from ecwid as well? BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Pinch/Zoom images, videos - PDFs Lightbox - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> 🤖 Ask me anything
annavdburgt Posted September 30, 2021 Author Posted September 30, 2021 On 9/27/2021 at 4:50 PM, bangank36 said: Did you include the script from ecwid as well? wich is? haha sorry, i really do not know anything about building websites 😛 this one? <script> (function (storeId) { document.addEventListener("pageChange", function () { loadEcwid(); }, false); loadEcwid(); function loadEcwid() { var containerId = 'my-store-' + storeId; var container = document.getElementById(containerId); var isEcwidPage = container != null; var ecwidLoaded = isEcwidPage && container.childNodes.length > 0; if (ecwidLoaded && isEcwidPage) return; if (!isEcwidPage) { window.ecwid_nocssrewrite = true; initEcwidIfNecessary(document.body); return; } window.ecwid_script_defer = true; window.ecwid_dynamic_widgets = true; window.css_selectors_prefix = encodeURIComponent('div#' + containerId); initEcwidIfNecessary(container, true); } function initializeScripts() { var initializationScripts = [{ "widgetType": "ProductBrowser", "id": "my-store-" + storeId, "arg": ["categoriesPerRow=3", "views=grid(20,3) list(60) table(60)", "categoryView=grid", "searchView=list", "id=my-store-" + storeId, "defaultProductId=" + getValueSave("my-store-" + storeId, "data-default-product-id"), "defaultCategoryId=" + getValueSave("my-store-" + storeId, "data-default-category-id")] }]; if (document.getElementById('my-search-' + storeId)) { initializationScripts.push({ "widgetType": "SearchWidget", "id": "my-search-" + storeId, "arg": ["id=my-search-" + storeId] }); } if (document.getElementById('my-categories-' + storeId)) { initializationScripts.push({ "widgetType": "CategoriesV2", "id": "my-categories-" + storeId, "arg": ["id=my-categories-" + storeId] }); } window._xnext_initialization_scripts = initializationScripts; } function initEcwidIfNecessary(container, reset) { if (typeof Ecwid != 'undefined') { if (reset) { Ecwid.destroy(); initializeScripts(); } ecwid_onBodyDone(); Ecwid.init(); } else { initializeScripts(); var script = document.createElement('script'); script.charset = 'utf-8'; script.type = 'text/javascript'; script.id = 'ecwid-script'; script.onload = function() { Ecwid.init() }; script.src = 'https://app.ecwid.com/script.js?' + storeId; container.appendChild(script); } } // init watch function window.onload = watch; function watch() { var observedAttributeName = "id"; MutationObserver = window.MutationObserver || window.WebKitMutationObserver; var a = new MutationObserver(function (a) { var dispatchedId; for (var b = 0; b < a.length; b++) { var c = a[b]; if ("attributes" === c.type) { var targetId = c.target[observedAttributeName]; if (dispatchedId && dispatchedId === targetId) return; dispatchedId = targetId; var d = new Event("pageChange"); document.dispatchEvent(d) } } }); a.observe(document.body, {attributes: !0, attributeFilter: [observedAttributeName]}) } function getValueSave(id, attribute) { var node = document.querySelector("#" + id); return !node ? "" : (!node.getAttribute(attribute) ? "" : node.getAttribute(attribute)) } })(64412512); </script>
tuanphan Posted October 3, 2021 Posted October 3, 2021 On 10/1/2021 at 1:25 AM, annavdburgt said: wich is? haha sorry, i really do not know anything about building websites 😛 this one? <script> (function (storeId) { document.addEventListener("pageChange", function () { loadEcwid(); }, false); loadEcwid(); function loadEcwid() { var containerId = 'my-store-' + storeId; var container = document.getElementById(containerId); var isEcwidPage = container != null; var ecwidLoaded = isEcwidPage && container.childNodes.length > 0; if (ecwidLoaded && isEcwidPage) return; if (!isEcwidPage) { window.ecwid_nocssrewrite = true; initEcwidIfNecessary(document.body); return; } window.ecwid_script_defer = true; window.ecwid_dynamic_widgets = true; window.css_selectors_prefix = encodeURIComponent('div#' + containerId); initEcwidIfNecessary(container, true); } function initializeScripts() { var initializationScripts = [{ "widgetType": "ProductBrowser", "id": "my-store-" + storeId, "arg": ["categoriesPerRow=3", "views=grid(20,3) list(60) table(60)", "categoryView=grid", "searchView=list", "id=my-store-" + storeId, "defaultProductId=" + getValueSave("my-store-" + storeId, "data-default-product-id"), "defaultCategoryId=" + getValueSave("my-store-" + storeId, "data-default-category-id")] }]; if (document.getElementById('my-search-' + storeId)) { initializationScripts.push({ "widgetType": "SearchWidget", "id": "my-search-" + storeId, "arg": ["id=my-search-" + storeId] }); } if (document.getElementById('my-categories-' + storeId)) { initializationScripts.push({ "widgetType": "CategoriesV2", "id": "my-categories-" + storeId, "arg": ["id=my-categories-" + storeId] }); } window._xnext_initialization_scripts = initializationScripts; } function initEcwidIfNecessary(container, reset) { if (typeof Ecwid != 'undefined') { if (reset) { Ecwid.destroy(); initializeScripts(); } ecwid_onBodyDone(); Ecwid.init(); } else { initializeScripts(); var script = document.createElement('script'); script.charset = 'utf-8'; script.type = 'text/javascript'; script.id = 'ecwid-script'; script.onload = function() { Ecwid.init() }; script.src = 'https://app.ecwid.com/script.js?' + storeId; container.appendChild(script); } } // init watch function window.onload = watch; function watch() { var observedAttributeName = "id"; MutationObserver = window.MutationObserver || window.WebKitMutationObserver; var a = new MutationObserver(function (a) { var dispatchedId; for (var b = 0; b < a.length; b++) { var c = a[b]; if ("attributes" === c.type) { var targetId = c.target[observedAttributeName]; if (dispatchedId && dispatchedId === targetId) return; dispatchedId = targetId; var d = new Event("pageChange"); document.dispatchEvent(d) } } }); a.observe(document.body, {attributes: !0, attributeFilter: [observedAttributeName]}) } function getValueSave(id, attribute) { var node = document.querySelector("#" + id); return !node ? "" : (!node.getAttribute(attribute) ? "" : node.getAttribute(attribute)) } })(64412512); </script> Where is ecwid icon? I don't see it on homepage Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.