Skip to main content

Embedding App Scripts (Full page or subscription bundles) on Shopify Page Builders works for Ecomposer, Gempages, and other page builders

Sid avatar
Written by Sid
Updated over 2 weeks ago

The video below will describe how to embed App Scripts ( Full page bundles on Shopify Page Builders, Work for Ecomposer, Gempages, and other page builders)

  • Replace the variables(bundleId and shop name) in the script.

  • Paste the Provided Script: You need to place the script in a template or a specific section that allows custom JavaScript or Liquid code.

  • Shopify.shop = your Shopify store URL

<div id="myContent">
</div>

<script>
let shopName = Shopify.shop; // or your shopName
let bundleId = 1; // intended bundle Id
window.easyBundlesConfig= {
shopName: `${shopName}`,
bundleId: bundleId,
targetSelector: '#myContent'
};
</script>
<script async src="https://gift-box-builder-app4.s3.us-east-2.amazonaws.com/public/easy-bundle-embed/easyBundlesBuilderPageEmbedWith_API_gateway.js"></script>

Example of a LIVE script below for reference- Paste the script below and just replace the Shopname and Bundle ID:

<div id="myContent">
</div>

<script>
let shopName = 'a8b499-2.myshopify.com';
let bundleId = 1; // intended bundle Id
window.easyBundlesConfig= {
shopName: `${shopName}`,
bundleId: bundleId,
targetSelector: '#myContent'
};
</script>
<script async src="https://gift-box-builder-app4.s3.us-east-2.amazonaws.com/public/easy-bundle-embed/easyBundlesBuilderPageEmbedWith_API_gateway.js"></script>
Did this answer your question?