Adaptive Pricing

Hey guys,

Is there anyway to have a product show adaptive pricing based off of the rest of the order value? I essentially want to create an adaptive tax fee without using tax jar.

What kind of code would be needed for this?

Thanks!

Hi @Sarah_Smith :waving_hand: welcome to the community!

Adaptive pricing like you describe is not something Funnelish has built-in. But it can be done with custom code.

Basically you need a script that checks the total order value at checkout, then adds or updates a product/fee line dynamically. For example:

  • Get current cart/order total with JS.
  • Apply your logic (ex: 5% extra if order > $100).
  • Inject that as a custom fee or modify the price field before checkout submit.

This would need JavaScript inside Funnelish custom codes. Not super simple, but doable with the right dev.