No content to show
User Activity
10-30-2024
You can change it from the shopify.server.js file in the apps folder. There is a key called apiVersion.
I've defined my app block schema settings and implemented the locales for them but this isn't working properly. Like the content from the default en.default.schema.json is loading but not loading for other languages. Here's my implementation:Schema S...
When the user is inputting dynamic content for the storefront using app block settings then how can I enable translation for those input?Say I've a heading in my storefront that the merchant can edit. It was implemented through the app block settings...
10-11-2024
It was a hectic process to solve the problem.I've posted the answer here: https://stackoverflow.com/a/79068611/15338342
I've a list of product handles stored in the main products metafield that I'm fetching in the following way: {% assign firstComponentHandles = product.variants.first.metafields.custom.component_handles %}const handlesData = {{ firstComponentHandles }...
Hi @jiajiowdjioajwi! Were you able to achieve what you wanted?
Hi @JoesIdeas. Hope you're doing good.Can you please give me head-up on how can I edit the theme code to show when an item is out of stock at a location.
I'm facing some issues related to automatic multi-location inventory tracking.Suppose I've 'X' product in location 'A' and 'B'. Location 'A' has 5 of that item and 'B' has 0 of that item.But when a customer tries adding this product to cart from loca...
When a customer is browsing a store then how can I get which inventory location is being selected when that customer is making order?Assume a store has product X in two locations: A with 5 units and B with 3 units. Now it's gonna give me error if I p...
@rifat_Shop Can't do that either cause that would be so costly as we've too many storefront requests per second.
@rifat_ShopHey! Thanks for your answer. I wish I could just do what you said.But what to do when you've loads of existing product with loads of variants that are available across different locations.
Suppose I've a product available on two locations with different quantities. Now I can get the total quantity from those 2 location which is mostly useless. So, I need to get the location specific quantity like location 'A' has 'x' and B has 'y' quan...
In my Shopify remix app I wanna dynamically change the API version. Like for the live stores I wanna use the January24 version and for the developers with development store I wanna use the July24 version of the API. Is there a way to implement this?
In my app's homepage I'm showing an message and link to activate the app embed based on it's activated or not.Now to check if the app embeds activate status I need to fetch the storefront id and I'm storing it in the apps .env file. Now in my remix a...
I was wondering what are the differences between bundles created with productVariantRelationshipBulkUpdate mutation and bundle created using function?Would be really grateful to get an answer. Thanks!