Cart Permalinks
// cart permalink
const href = "https://my-shop-name.myshopify.com/cart/36485954240671:1?discount=mydiscountcode"
// convert to JS URL so that we can add query params
const url = new URL(href);
// get the Intelligems ID
const igId = window.igData?.user?.igId;
// igId might be undefined here if Intelligems is not loaded
if (igId) {
// add the query param to the URL
url.searchParams.set("attributes[igId]", igId);
}
// convert the URL object back to its string representation
const newHref = url.toString();Last updated