Add Ideal Button to Product page

Add Ideal Button to Product page

Jurgen2320
Tourist
4 0 2

Im trying to add a Ideal Button to my webshops product page that takes the customer directly to the checkout with the selected product. Shopify has a button for PayPal, but i cant find one for ideal. does anyone know where i can do this or does anyone have some code that can do this.Schermafbeelding 2025-05-12 210502.png

Snorkly.nl
Replies 2 (2)

Beast_Boy
Shopify Partner
41 0 0

 

one of the easiest way i know is to use Shopify’s Buy Button channel. you can add it from Sales channels > Buy Button, or instead create a button for your product, set it to redirect to checkout, and copy-and-paste the embed code onto your product page.

That button you made will send shoppers straight to the cart and checkout (where iDEAL will appear if you’ve enabled it in your payment settings).

 

you can also link directly to:
/cart/VARIANT_ID:1?checkout

Swap in your product’s variant ID, style your “iDEAL” button around that link, and it will work

Let me know if you need a hand with either approach!

If this fixed your issue, a like and marking it solved will mean a lot to me.
I am a Shopify Specialist | Focused on helping eCommerce stores Grow - Maven
Need help with your store design or optimization, need to increase sales, support in marketing ? Let me assist..
Contact : uxmavenonline@gmail.com

RubyBliss7
Tourist
6 1 4

 

Hi there 👋

Great question—what you're looking for is similar to Shopify’s Buy Now or dynamic checkout buttons, but with a specific focus on iDEAL as the payment method.

Unfortunately, Shopify does not currently allow you to force a specific payment method (like iDEAL) using a direct checkout button due to security and gateway control limitations. The checkout experience is handled by Shopify, and it automatically displays iDEAL if:

 You're using Shopify Payments
 The customer's region and currency support iDEAL (e.g., Netherlands, EUR)


 Here's What You Can Do:

Option 1: Use a Direct Checkout Link

You can add a custom “Buy Now” button that takes users directly to checkout with the selected product in the cart.

Here's an example of a direct checkout link:

 

bash
CopyEdit
/cart/PRODUCTID:1

 

 

Replace PRODUCTID with the actual variant ID of your product (you can find this in the URL when editing a product variant).

Add this button code to your product template (usually in product.liquid or main-product.liquid if you're on Dawn):

 

liquid
CopyEdit
<a href="/cart/1234567890:1" class="button">Buy with iDEAL</a>
 

📝 Note: This won't force iDEAL, but if iDEAL is available in the region and enabled in Shopify Payments, the customer can select it at checkout.


Option 2: Use a Payment App or Gateway

Some third-party apps or iDEAL-specific gateways might allow more direct control over payment methods, but integration varies and usually still routes through the standard Shopify checkout.


Let me know if you'd like help customizing the button or finding the right variant ID for your products. Happy to assist! 😊