Migrating an exclude subscription items script
The stakes are higher here than anywhere else in the library. A one-off discount applied to a wrong line is one order; a subscription priced wrong is every renewal until somebody notices.
Nog niet mogelijkIt skipped any line that had been added on a selling plan.
Plak het in Scripts-redding en kijk wat eruit komt
- Kopieer de Ruby met de knop naast elk Script op deze pagina.
- Open in je Shopify-beheer Stackable, dan Hulpmiddelen, dan Scripts-redding.
- Plak het daar, lees wat het hulpmiddel zegt te gaan bouwen en vergelijk dat met de instellingen op deze pagina.
Scripts-redding zit in het Pro-abonnement. Er wordt niets gepubliceerd totdat je vertelt wat je oude Script gaf en beide bedragen tot op de cent kloppen.
Het Script
Nog niet mogelijkDISCOUNT_PERCENTAGE = 20
Input.cart.line_items.each do |line_item|
next unless line_item.selling_plan_id.nil?
line_item.change_line_price(
line_item.line_price * (1.0 - (DISCOUNT_PERCENTAGE / 100.0)),
message: "20% off one-time purchases"
)
end
Output.cart = Input.cartWe have not built this yet
Your Script treated subscription items differently. Shopify does tell us which items are subscriptions, but our checkout query is already at Shopify's cost limit, so we cannot ask for it today.
Dit is ons gat, niet dat van Shopify. Shopify staat het toe en wij hebben het niet gebouwd, dus er valt hier niets te linken en niets op het platform af te schuiven.
Redensleutel: unsupported.subscriptionExclusion
Er is hier geen winkelwagen om te testen, want er wordt niets gebouwd. Dit plakken levert de melding hierboven op en verder geen campagne.
Veelgestelde vragen
- Will Stackable rebuild this script?
- No, and the reason is stated rather than hidden: Your Script treated subscription items differently. Shopify does tell us which items are subscriptions, but our checkout query is already at Shopify's cost limit, so we cannot ask for it today.
Verwante Script-vormen
A discount limited to products carrying one tag, vendor or type.
Already-marked-down products protected from a second discount.
Gift cards left out of a discount that would otherwise have hit them.
Plak je Script en zie het herbouwd worden
De herbouw wordt getoetst aan het bedrag dat je oude Script rekende voordat je hem kunt publiceren.