No content to show
User Activity
Sorry, you don't need the `content` property, that was specific to mine. Replace it with whatever the name of the property is
You need something like this:{%- assign metaobject = product.metafields.namespace.key.value -%}
{{ metaobject.content | metafield_tag }}
I have a simple Checkout UI Extension that displays `Disclosure ` component if a certain metafield is on the Line item. Following the example in the docs, I have this: import {
reactExtension,
List,
ListItem,
Text,
Disclosure,
Pressable,...
11-21-2023
There was a discrepancy between the cli installed in the project repo and the one installed globally 臘♂️
Any update on this? I got the same question
I ended up just creating a metaobject with everything I could — headings, bold text, italics, etc:==================================Heading 1Heading 2Heading 3Heading 4Heading 5Heading 6This is a paragraph. This is bold text. This is italic text. Th...
09-28-2023
I'm also noticing that when I create an extension, it adds this to my package.json: "overrides": {
"@types/react": "17.0.30"
} I can only assume it's coming from here:// node_modules/@shopify/app/dist/cli/constants.js:12
export const versions ...
09-28-2023
Ok, I think I figured out what my issue was, though changing the api version should help. We haven't been using the CLI to actually generate the app; we have a custom template we use, but we haven't used extensions before. We had conflicting versions...
09-27-2023
Which docs exactly? Everything in the Checkout UI docs looks the same to me.
09-26-2023
I am completely baffled by the extension targets. For context, I'm working on a Checkout UI extension — it displays a message if the customer has any digital items. Pretty simple. Within the app, when I run `shopify app generate extension` using the ...
Scott, Any chance that there is documentation for this yet? I'm trying to convert HTML to the AST, but without knowledge of all the fields, it is a bit difficult.
@ShopifyDevSup just following up with this. Note that the above code isn't completely correct, but even when corrected, the delays (even up to 3 seconds) don't remedy the issue
Any update on this? Having the same issue
Update, adding delays did not seem to help:await DraftOrder.fromOrder(order.id)
// create an order, then 1 second delay
.then((result: Result<DraftOrder.DraftOrder, string>) =>
(console.log('Delaying...'),Shopify.delay(1000), result))
.then((re...
Correct, this was a draft order update mutation, and yes, we are running processes in parallel. I'll share some relevant portions of the code with some annotations. The gist of the app is this. We mark some items are "pre-order" using additional attr...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
1908 | 11-21-2023 03:22 PM |