Hi, With the new Shopify payment apps, the payment icons at the theme footer does not seem to work - no icons are shown. I expect the icons selected in the configuration of the payment app t...
Aug 21, 2022
Hi, With Shopify payment apps it is not possible to control the order of the payment apps/methods at checkout. We have many merchants that request this feature, and in addition to that,...
No content to show
User Activity
Hi Ryan,Thank you for your response.Ah ok I see.I'll cross my fingers as well Kind regards,-Louise
Hi!How do you find that mutation?I just did a POST to https://{{SHOP_NAME}}.myshopify.com/admin/api/unstable/graphql.json with the following body: query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
...
Hi, In the query root of the graphql admin api there is a query "abandonment" which can be called via the id of the abandonment c.f. https://shopify.dev/docs/api/admin-graphql/2024-04/objects/QueryRoot. But where do you get the id from - where is the...
I am curious as to whether there is an alternative solution as well - particularly because the documentation states the following about the hook "This method will return an error if the buyer is using an accelerated checkout method, such as Apple Pay...
Furthermore the documentation of the hook currently states "This method will return an error if the buyer is using an accelerated checkout method, such as Apple Pay, Google Pay, or Meta Pay." - which seems to be a big issue.
Ok I just found this post that suggests using a checkout UI extension to remove the discount via useApplyDiscountCodeChange hook c.f. https://community.shopify.com/c/extensions/is-it-it-possible-to-remove-discount-codes-from-a-cart-using/td-p/2193014...
Hi,I am looking into converting checkout scripts to functions as scripts will be deprecated August 2025. When using scripts it was possible to prevent regular discount codes from being applied via the "reject" feature/function. C.f. https://shopify.d...
Hi, I've done the following:Created a "order routing location rule" function using the example from the template https://shopify.dev/docs/apps/fulfillment/order-routing-apps/location-rules/getting-startedI have a shop with a Canadian shipping fulfill...
I have not tried out the reserved namespaces myself yet, but I believe I saw somewhere that you can leave the namespace out and then the reserved namespace will be used by default. You should delete the defined metafield first - you can do it via the...
Ensure that data is actually set - I don't know whether you check the response from metafieldsSet to determine whether an error occurred.But you can go into the admin -> Settings -> Custom data -> Shop and manually set a value in you metafield and th...
No you are using "metafieldDefinitionCreate" - this just creates a metafield definition for you to see in the admin under Settings -> Custom data, but it does not set a value in the metafield. If you want to set a value in the metafield, you should u...
I am not sure I understand your question, but in general you can add UI to the embedded app that allows the merchant to configure different parameters. You can set those settings in metafields with the graphql mutation metafieldsset c.f. https://shop...
In the shopify.extension.toml:[[extensions.metafields]]namespace = "some_namespace"key = "some_key"In the Checkout.jsx you import useAppMetafields.The code could e.g. be:...const appMetafields = useAppMetafields()...console.log('appMetafields',appMet...
Thank you for your reply.Ok that is interesting - where did you find information about that?
Ah ok.I did not try because it is not the data I am looking for.But I guess something like below would do the trick:query {
shopifyqlQuery(query: "FROM products
SHOW
sum(gross_sales),
sum(view_sessions)
SINCE -7d") {
__typen...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
413 | 09-12-2023 05:12 AM | |
262 | 09-07-2023 01:23 AM | |
1943 | 08-27-2023 02:41 PM |