No content to show
User Activity
10-21-2024
You need to handle your hosting the server for your own app which runs on the URL you've set for the app. Some exceptions are code (e.g. extensions) that are deployed to Shopify via Shopify CLI. Those will be hosted by Shopify's CDN.
You need to wrap your function with async in order to use await. Try this instead. analytics.subscribe('checkout_started', async (event) => {
const dyid_server = await browser.cookie.get('_dyid_server');
});
Since this is a query for "shopifyPaymentsAccount", you can start by looking at the documentation for that: https://shopify.dev/docs/api/admin-graphql/2024-10/queries/shopifyPaymentsAccountThen expand "payouts" since that is what you are querying for...
I am unsure about Shopify's redirect function, but maybe you can try "window.open(confirmationUrl, '_parent')" instead and see if that has the same issue.
I am not sure about the iPad app, but on Android you can switch stores by tapping on the store icon in the top left of the screen and there should be a list of stores that you have access to.
10-18-2024
Check your API secret key again, it should not be the same as your API key.Also, you should remove your screenshots because it contains sensitive information and this is a publicly accessible forum. It could be used to access your store.
They are static components that are there visually while you load data from external sources. You will need to hide them and replace them with the data you want to show.
You need to use double quotes for your products query.Try this:{"query":"{products(first:100,query:\"title:*brace*\"){edges{node{title}}}}"}
According to the docs "originalUnitPrice" is deprecated and also the type takes a number without currency. Try either removing currency like the example in the docs.Or use "originalUnitPriceWithCurrency" instead. https://shopify.dev/docs/api/admin-g...
I am fairly certain that script tags work in an App Embed Block. Try removing the rest of the script and just have a console.log to verify that it works, and also inspect the HTML code and check that the updated script tag is there. <div id="custom-p...
10-16-2024
It seems to be stated in the documentation you have linked. Test subscriptions don't convert to paid when you transfer a store. After transferring, you'll need to create a new plan.It seems that if it is the same store that you are testing with right...
10-15-2024
It is probably React escaping strings with special characters.Try using dangerouslySetInnerHtml: https://react.dev/reference/react-dom/components/common#dangerously-setting-the-inner-htmlBut make sure where you are getting your HTML from is a trusted...
Try toggling this option on or off which can be found in your Shopify partners app settings page for "extensions".
10-15-2024
Just a very basic check, but did you replace "your-development-store.myshopify.com" in your example curl command with your own store's URL?
My guess is that DOMContentLoaded event is not fired or was fired before the script executed.Try adding a console inside the event listener callback function and see if you can find the message in the console.You can also try calling "renderProducts"...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
768 | 10-21-2024 05:35 AM | |
525 | 10-21-2024 05:27 AM | |
1371 | 10-18-2024 12:49 AM | |
1507 | 10-16-2024 08:13 PM | |
387 | 10-15-2024 01:44 AM |