No content to show
User Activity
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 ...
Thank you for your reply.About the discount, I applied it in Step-1 (checkout information) and after the order is processed, I will update the customer metafield at the moment. In addition, I want to update real-time, it's means, I will update custom...
This is the first time I am working with Shopify, please help me with this case.I am using points in the customer metafield to discount for an order when the customer checkout. But I don't know how to update customer metafield on checkout pageI want ...
This is the first time I am working with Shopify, please help me with this case.I am using points in the customer metafield to discount for an order when the customer checkout. But I don't know how to update customer metafield on checkout pageI want ...