Apply hidden surcharges
Last updated
Was this helpful?
Last updated
Was this helpful?
You can add a hidden surcharge or a fee at the checkout with JavaScript code.
To apply the JavaScript code, you need to enable Ecwid JS API on your storefront. To do so, set up a self-hosted JavaScript file running on your server and use the code example below.
Jump into the .
With Ecwid JS API enabled, you can use extra fields to apply a hidden surcharge to the order, for example, as an extra processing cost for some shipping methods.
To do so, you need to create an extra field with only 4 attributes and no others:
value
with an internal name for the surcharge (customers won't be able to see it).
surchargeShortName
with showSurchargePercentValue
set to false
.
options
with only one option that has a surcharge
value.
surchargeType
that defines if the surcharge is calculated as a flat value (absolute
) or percentage from the order total (percent
).
Code example:
This example applies a 5% surcharge at the checkout. The surcharge is invisible to the customers but visible to the store owner.
Full documentation on setting up extra fields with hidden surcharges: