Ryvix
Ryvix
I don't believe I have. Although I haven't tested it lately to find out if it was fixed in the latest update but sounds like it isn't.
I'm going to have to agree. We could really use an automatic method of generating a final version of the plugin ready for installing and more instructions on how to...
Hello, I believe Shopify-api-node has to be updated to accommodate these changes. I don't think the Event version the app uses is the issue. I got an email on the...
I believe this is related to issue #632
If it helps, all I know is that it only lists those deprecated properties, among others, in the interfaces within the types/index.d.ts file anywhere in my project. I don't know...
Hello, did you happen to ever figure this out? I was trying to do something similar but couldn't quite get it figured out. I was trying to change a text...
Thank you for the response! I finally figured out a way to do it without trying to use React or Carbon Fields stuff since the docs seem to require some...
In my previous code inside the ajax response replace this: ```js $textfield2.val(response.data.value); ``` With this: ```js const field_key = 'field-name'; block.attributes.data[field_key ] = response.data.value; wp.data.dispatch('core/block-editor').updateBlock(block.clientId, {attributes: block.attributes}); ``` And add...
I just wanted to follow up and post another solution that doesn't necessarily use blocks in case anyone was trying to do it that way too. For example when using...
Will this help you? https://docs.carbonfields.net/learn/advanced-topics/javascript-api.html