No content to show
User Activity
We did resolve it. Aside from three global variables in our .js file, the first thing in the code is an event listener for document load and then append the container to the body. This is the code snippet and once we put the modal div in place the ...
11-12-2024
Did they ever say what the issue was here - it's back again. I updated CLI to make sure I am current (and already was) but the new script is not posting. It feels like that guy from the movie Airplane who unplugs the runway lights when you are post...
Doing the same - trying to PUT a template into a theme using the rest admi API and using this URL pathhttps://{{storeurl-genx}}/admin/api/2024-10/themes?themeid={{themeid}}.jsonand the body is the json file for a product suffix template (e.g. product...
10-09-2024
I am trying to add a product suffix template to a theme programmatically using the admin API. We connect to the API using the X-Access-Shopify-Token and store URL, we get the active theme ID, then we get the product template, and then we want to pos...
10-03-2024
Cool. I also refreshed the store I am working in to give it time to appear. The liquid and HTML changes come fast but the scripting not so much.
10-03-2024
I ended up deploying the app to a newer version of it in the development app (no live users) and it corrected itself. I cannot tell if it is caching or something else. When looking in console, I could see that the new script was not there based on t...
09-26-2024
I am inserting a template into an existing theme for a Shopify store. I recovered the theme that was in use using a GET to the admin API with X-Acess-Token. I then GET the product template and make a copy of the JSON. I want to PUT the product templ...
09-13-2024
import { AppProvider } from "@shopify/polaris";
import "@shopify/polaris/build/esm/styles.css";
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./components/App";
import { I18nProvider, useI18n } from '@shopify/re...
07-30-2024
Resolved this issued by appending the modal to the body and ensuring the display: none; is set on the container when the append occurs. Looks like this...const iwtModalButton = document.getElementById('iwtModalButton');
if (iwtModalButton) {
i...
07-30-2024
shopify app dev is not showing javascript updates so each time the script changes, I have to redeploy. That's a bad experience. Like really bad.
07-26-2024
Was this ever resolved - we are having an identical issue
We are testing in 7 stores right now and multiple themes to see if this is a prevalent issue. The modal is triggered by a block and the schema defines a couple of snippets - one for the button targeting a section and one for the modal targeting body...
I have a modal window that can be launched on a product page or a cart page. On launch from product, the product is added to cart and then the cart is fetched and displayed in a table in the modal window. On launch from cart, the modal window opens...