No content to show
User Activity
When “ship to customer” is chosen in the POS, the CarrierService apps `callback_url` is called to obtain shipping costs for items in the cart. In some circumstances, a single call is made to the callback_url that contains all items in the cart. In ot...
06-16-2022
Thanks for the prompt response!To give you more information, the app will add line items, then immediately update those line items with a discount via `SET_LINE_ITEM_DISCOUNT`. It's the discount call I see isn't getting applied to the cart more than ...
06-15-2022
I'm using app-bridge to to add multiple items and discounts to a cart in a short period of time.e.g.addLineItemToCart(data: AddLineItemData): void => {
this.cart.dispatch(Cart.Action.ADD_LINE_ITEM, { data });
}items.map((i) => addLineItemsToCart(i)...
11-29-2021
I've created a custom app in Javascript for use in the POS app. The app uses app-bridge to add items to a cart. e.g.import { Cart } from '@shopify/app-bridge/actions';
...
fetchedShopifyCart.dispatch(Cart.Action.ADD_LINE_ITEM, {
data: {
...