All things Shopify and commerce
Hello there,
I have disable the Oney payment 3x without fees because I would like my customer to be able to use it only for orders above a certain amount (250€ probably but I'll think about this).
Since the fees on the orders using this payment method is quite high for me, I don't want to show it on the checkout page for orders below this amount.
I didn't find any way to do so natively in the shopify settings.
If someone know how to add certain "rules" to the payment method display...
Thanks,
Victor
Hi @Vic1208
It sounds like you're trying to make the Oney 3x payment option available only for orders above a specific amount (e.g., €250) while hiding it for lower-value purchases. Unfortunately, Shopify doesn’t natively support conditional payment method displays based on cart value in its default settings. However, there are a few workarounds you can try:
If you're on Shopify Plus, you can use Shopify Scripts to create a rule that hides the Oney 3x payment option for orders under €250. You’d need to write a Ruby script to filter out payment gateways based on order total.
Here's an example of how the script could look:
if Input.cart.subtotal_price < Money.new(cents: 25000)
Output.payment_gateways.reject! { |gateway| gateway.name == "Oney 3x" }
end
Note: Shopify Scripts only work on Shopify Plus, and they only apply to Shopify’s own checkout system, not third-party payment providers like PayPal.
Since Shopify doesn’t have built-in rules for payment method restrictions, the best option for non-Plus users is to use a third-party app that allows conditional payment rules.
Some apps that support this feature include:
These apps let you set conditions for when a payment method should appear, like:
If you're on Shopify Plus and using Checkout Extensibility, you might be able to configure this through checkout.liquid or Checkout UI extensions. However, this requires developer skills to hide or show payment options dynamically.
If you're on Shopify Plus, the best approach is to use Shopify Scripts to filter payment options directly. If you're on a lower plan, you'll need a third-party app to set up rules for payment display.
If you need any other assistance, feel free to reply and I will try my best to help.
Best regards,
Daisy
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025