Nov 12, 2020
Hi there! I am wondering if there are any way where and how my customers could manage their Subscriptions? Like change frequency, or unsubscribe? Change credit card which they use for monthly ...
No content to show
User Activity
01-07-2025
1. Performance OptimizationHow that? Actually it vice verse, you do not allow us to use webm... Which is much lighter... 2. Cross browser compatibility since WebM does not work well in safari browser in IOS.Why you dont allow to devs fix it themself...
12-30-2024
How that possible that Shopify do not support webm formats?I have upload my own video file in webm format which Shopify convert to some m3u8 so it fails to use via html video src tag. So what is the reason for this?
That why Shopify is a bad platform for developers.
I posted solution mate.
The solution to this is use checkoutTokenAnd it is only available in react extension build at the moment. let api = useApi();
const checkoutToken = api.checkoutToken.current;
11-01-2023
Any help please?
Hi there.How i can obtain cart token or checkout/cart id inside extension? import { extension, TextField } from "@shopify/ui-extensions/checkout";
export default extension("purchase.checkout.delivery-address.render-before", async (root, api) => {
...
Btw, for some reason i was not able to receive it via store front api. function getOTP(query) {
return query(
`{
shop {
name
metafield(namespace: "appNameSettings", key: "otp_key") {
value
}
}
}`
)
.then(({ data }) =>...
On CHECKOUTS_CREATE webhook i need to get OTP (One-Time Password) and use it inside checkout ui. So i have created admin api to register new metafield inside CHECKOUTS_CREATE webhook handle. export const handleCheckoutLand = async (session, admin...
10-11-2023
I was able to create meta field via admin api with ownerId = shop Global ID And i see in checkout UI the value of it. The problem that this value is old. I set this value on webhook CHECKOUTS_CREATE so may be that why the value is old.In checkout-ui ...
10-11-2023
Thanks Liam! Appreciate your reply and trying to help me.As I use remix app builder which runs on node server, i already have prisma db client with custom model to save app related custom data. But i am not sure if i have able to retrieve data from d...
10-10-2023
I have created shopify app with checkout-ui extension. In extension toml config file i see this by default: [extensions.settings]
[[extensions.settings.fields]]
key = "banner_title"
type = "single_line_text_field"
name = "Banner title"
description = ...
10-10-2023
Damn, thanks man. I really hate Shopify's docs.inside yourAppName/app/routes/webhooks.jsx case "CHECKOUTS_CREATE":
if (session) {
const response = await admin.graphql.query({data: `
query {
shop {
name
}
}`
...
It doesnt work any more.
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
5438 | 11-29-2023 03:38 PM | |
1742 | 02-08-2022 09:03 PM | |
3277 | 02-07-2022 10:20 AM |