1,319 questions
0
votes
0
answers
12
views
Shopify Navigation Menu cannot set active menu
# This is from the documentation
# https://shopify.dev/docs/api/app-bridge/previous-versions/actions/menu/navigation
const itemsLink = AppLink.create(app, {
label: 'Items',
destination: '/items',
...
-1
votes
0
answers
50
views
Issue with Session Token Authentication During Shopify App Review (Remix + Shopify App Bridge)
We're experiencing a session token authentication issue during the Shopify app review process, and we're hoping someone might have encountered something similar.
📌 Context:
We built a custom Shopify ...
0
votes
0
answers
16
views
Trying to create a metafield for shopify app with gadget.dev
I`m really trying hard to create a metafield with an image list for my shopify app, but having a hard time.
I'm using typescript and this is my graphql request for the metafield creation:
const ...
-1
votes
1
answer
43
views
How can I make a request from a Shopify Liquid theme to an authenticated route in a Remix app?
I have a Liquid file in Shopify with a form on it. When the form is submitted, I make a request to a route in my Remix app:
fetch('https://my-proxy-url.trycloudflare.com/api/entrants', {
method: '...
0
votes
1
answer
50
views
In my remix Shopify app, the resource picker is throwing an error...how can I resolve this error?
I've tried importing the shopify resource picker from app bridge react and said it didnt exist so I am now trying to import it from app bridge actions library with only slightly more success. It is ...
-1
votes
1
answer
38
views
How can I create a free plan using the shopify billing api for my shopify app?
I am trying to give certain stores the opportunity to use my app for free as a way to get feedback from trusted people. When create a plan and set the amount to 0 it throws an error when I try to send ...
1
vote
0
answers
39
views
How to Determine if a Shopify Subscription Has Been Charged?
I built a Shopify app using Shopify Billing and encountered an issue at this step.
I offer customers a 3-day free trial. If they remove the app during the trial period, their subscription will be ...
0
votes
1
answer
40
views
GraphQL Admin API: Shipping Address Returns Null for Abandoned Checkouts
I am making API requests from an app (public but not listed yet app) installed via the Shopify Partner Dashboard on a development store, and I am encountering an issue where the shippingAddress field ...
0
votes
0
answers
51
views
Shopify Error: Field 'customerByIdentifier' doesn't exist on type 'QueryRoot'
export const loader = async ({ request }: LoaderFunctionArgs) => {
await authenticate.admin(request);
const admin = await authenticate.admin(request);
const email = "[email protected]"...
0
votes
0
answers
98
views
How can I setup GTM triggers to track website forms interaction, when a user starts filling out or submitted, here forms created using 3rd-party apps?
I have a website built on Shopify using the Dawn 15.2.0 theme. This theme comes with some pre-installed forms and basic new form creation options.
Whenever I submit or start filling out any of these ...
1
vote
0
answers
114
views
Shopify GraphQL Admin API - Empty Returns
Apologies for the long question but I wanted to include all of the various things we've tried.
TLDR: for some reasons, no API call lets us access a Shopify store's
returns. The same API calls work ...
1
vote
0
answers
174
views
Shopify GraphQL admin api productCreate input object doesn't have variants
I am trying to create a shopify product as well as multiple variants all in the same productCreate mutation.
This is the query I have:
mutation CreateProductWithOptions($input: ProductInput!) {
...
0
votes
1
answer
74
views
Getting error CORS failed in my Shopify App Proxy
I am trying to call app proxy but getting error in dev tools -> Network
Response body is not available to scripts (Reason: CORS Failed)
I have already tried setting my header as * as well as
...
0
votes
0
answers
26
views
Are Shopify standard checkout events stable and consistently named/structured for longterm external tracking needs via GTM?
With Shopify deprecating the checkout.liquid file, I've been looking for alternatives to collect checkout/purchase data for use with some external pixels that don't have dedicated Shopify apps. I just ...
0
votes
0
answers
36
views
How can I store utm values in the shopify cart through a theme app extension?
I've created a block targeting the body so that the code will check the url whenever the shop is opened, and the goal is to loop through all url parameters and store any utm sources in the cart for ...