No content to show
User Activity
We're recently facing issue with our POS app. The app allows customers to add products to create a sale on account. After adding products to create a new sale sometimes there is a popup on the POS app saying "Action cannot be persisted on server". We...
any response on this. is it possible?
Hi added the same environment scope locally as well as in production. locally it seems to work fine. in production getting forbidden 403 error
I am encountering some issues when I host a version of my custom Shopify app to test. It works perfectly fine when run locally using the 'npm run dev' command, but when I build and host the app, I run into problems.I am able to install the hosted ver...
04-09-2024
Hey, can you share the solution? I am getting a 403 forbidden error when I build and deploy the project and install it to a store. Locally the API works fine with "useAuthenticatedFetch()"
After adding notes to the Shopify POS cart I am using the below function to get the payload of the cart. var unsubscriber = cart.subscribe(Cart.Action.UPDATE, function (payload) {
console.log('[Client] fetchCart', payload);
unsubscriber();
});
ca...
The Shopify POS app stopped accepting payments, even cash payments, suddenly after working fine for 6 months. I've attached the screen shot of the error message.I use the POS app to test our Shopify app so it is running a test store. No changes were ...
hey there thanks for the reply. we checked the suggested points:1. can you elaborate this one a bit. what can we check2. the app has necessary permission to modify the cart3. we removed all other apps from the store and tried still no luck4. currentl...
Did anyone face the unexpected lineitem properties disappearing from the POS cart after adding the properties through the cart API from our app? Note: This is happening to some specific stores.Using node v20.3.1, shopify cli 3.45.1Here is a sample co...
Hi anyone faced the unexpected lineitem properties disappearing from POS cart after adding the properties through the cart API. var lineItemPayload = {
price: 20,
quantity: 1,
title: 'Bab Low - Blue Jay',
properties: [{ name: 'test', value: 'rand...
10-12-2023
Steps to reproduce:Using node v20.3.1, cli 3.0cd to the app dirrun npm run dev (alias: shopify app dev) The error pops up.
this is my OrderWebhookHandlers.js import { DeliveryMethod } from "@shopify/shopify-api";
export default {
ORDERS_CREATE: {
deliveryMethod: DeliveryMethod.Http,
callbackUrl: "/api/webhooks",
callback: async (topic, shop, body, webhook...
03-25-2023
have you found any solution for this? Please let me know @RBTriesHisBest