You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vend uses a product to process sale-wide discounts.
This product has source=SYSTEM instead of source=USER as it is a system product, and will always have a handle and sku of vend-discount.
Although the product should not be changeable via a CSV import, there is potential that importing and changing the product could cause issues, so it's best to not include that in the CSV.
This one:
Should be an easy fix.
The way I excluded it with my export tool was during the CSV writing loop, I just skipped the loop if I matched the handle and sku to be vend-discount.
// Check and omit vend-discount.
if handle == "vend-discount" && sku == "vend-discount" {
continue
}
The text was updated successfully, but these errors were encountered:
Vend uses a product to process sale-wide discounts.
This product has
source=SYSTEM
instead ofsource=USER
as it is a system product, and will always have ahandle
andsku
ofvend-discount
.Although the product should not be changeable via a CSV import, there is potential that importing and changing the product could cause issues, so it's best to not include that in the CSV.
This one:
Should be an easy fix.
The way I excluded it with my export tool was during the CSV writing loop, I just skipped the loop if I matched the handle and sku to be
vend-discount
.The text was updated successfully, but these errors were encountered: