Skip to content

Instantly share code, notes, and snippets.

@sandipklevu
Created September 25, 2024 12:51
Show Gist options
  • Save sandipklevu/204c8d1af890b465a268549d18cc0d9b to your computer and use it in GitHub Desktop.
Save sandipklevu/204c8d1af890b465a268549d18cc0d9b to your computer and use it in GitHub Desktop.
Asklo for Magento 1
<!-- app/design/frontend/rwd/default/layout/local.xml -->
<!-- Replace rwd with the current theme -->
<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_product_view>
<reference name="product.info">
<block type="core/template"
name="klevu.asklo.div"
after="-"
template="klevu-asklo/pdp-div.phtml"/>
</reference>
<reference name="content">
<block type="core/template"
name="klevu.asklo.js"
after="-"
template="klevu-asklo/script.phtml"/>
</reference>
</catalog_product_view>
</layout>
<!--app/design/frontend/rwd/default/template/klevu-asklo/pdp-div.phtml -->
<!-- Replace rwd with the current theme -->
<klevu-init>
<klevu-product-query pqa-widget-id="pqa-xxx-xxxx-4bxx5-xxxx-xx7786d85fxx">
</klevu-product-query>
</klevu-init>
<!-- app/design/frontend/rwd/default/template/klevu-asklo/script.phtml-->
<!-- Replace rwd with the current theme -->
<script>
const klevuResource = document.createElement('script');
klevuResource.src = 'https://resources-webcomponents.klevu.com/latest/klevu-ui/klevu-ui.esm.js';
klevuResource.type = 'module';
document.head.append(klevuResource);
</script>
<link href="https://resources-webcomponents.klevu.com/pqa/pqa_full.css" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment