No content to show
User Activity
I am using Shopify Flow, in my case, when creating an order, I will update the customer metafield, but I don't know why, in some order, the metafield has a value of empty array, expected metafield should be an array with 4 metafield objects, many oth...
I tested by changing the network mode to very slow network, but in the checkout screen, after you click on the apply button, the button becomes loading state and you can't do anything, can't checkout, I tried with the case of opening 2 tabs on the br...
Thanks guys for read my issue, more clear about my case, I'm allow to apply 1 coupon code only, when I click button Apply, the previous coupon will be remove and new coupon will be apply. The first thing I need is reproduce that case to report with m...
I customize Checkout with app extensionMy app only allows user to apply only 1 coupon, if user apply another coupon,the previous coupon will be deleted. All API I am using is from Shopify, but I don't know how, in some special way,only 1 user can ap...
02-19-2024
I am using one Github repo with 2 branchmain (PROD store)dev (DEV store)Two branches are connecting with 2 Stores (more info)the dev branch has been checked out from the main branch to implement for the developer When someone else installs the app in...
@Cpuga No, You cannot update customer metafield on the checkout page.I use another method by saving the order information to DB when checkout and updating it to the customer metafield in the next date by automatic API
Thank for your reply but I don't want to make a call API to Shopify's Admin, I created an API outside from another server and I want to make a call API to there
I am using Shopify Admin action extension and using network access outside Shopify.In the web/front-end folder, I create authenic and I can get session in here.But in the admin extension folder, I tried to import the authentic function from web/front...
Excuse me sir, I checked the shopify dev docs and found it.https://shopify.dev/docs/apps/admin/admin-actions-and-blocks/build-an-admin-blockThese docs say we can customize the Admin UI in customer detail, order detail and product detail. But when I ...
09-25-2023
I'm following the docs of Admin block extension to custom the UI of Admin customer detail, I can preview this app but can't deploy this app to my store.When I run the deploy command:npm run deployI got an error: extensions.targeting: Block extension ...
I'm working with Shopify theme and using an access network outside Shopify for each environment.const environment = '{{ settings.environment }}';
let apiEndpoint;
if (environment === 'Development') {
apiEndpoint = 'https://dev-api.example.com';
} e...
This problem just happened 7-8 days ago. But in this morning, I rechecked and it came back, and now it's working. I don't know why, maybe Shopify just updated something?
I have the same problem with it. Maybe it just happened recently
@Liam I just want to update customer metafield in checkout UI extension
Thanks again for your reply.I read the docs about useApplyMetafieldsChange(). And I see this line "This metafield value is later associated with the order". In In this link Does this mean this function just works with the order and cart only or I am ...