-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BP-3148 Add a option to not show the iDEAL issuers selection in the c…
…heckout
- Loading branch information
Ivascu Madalin
committed
Nov 16, 2023
1 parent
b4afb4d
commit 8253987
Showing
5 changed files
with
61 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
{namespace name='frontend/plugins/payment/buckaroo_ideal'} | ||
|
||
{if $buckarooExtraFields.lists.canShowIssuers} | ||
<h4>{s name="PluginsIdealHeadline" namespace="frontend/buckaroo/plugins"}Select iDEAL issuer{/s}</h4> | ||
<div style="margin-bottom: 10px;"> | ||
|
||
<div style="margin-bottom: 10px;"> | ||
{include file='frontend/_includes/fields/user_id.tpl' name="ideal"} | ||
|
||
{include file='frontend/_includes/fields/user_id.tpl' name="ideal"} | ||
<label style="float: left; width: 40%; line-height: 40px;" for="buckaroo-ideal-issuer-select">{s name="PluginsIdealIssuer" namespace="frontend/buckaroo/plugins"}Issuer{/s}</label> | ||
|
||
<label style="float: left; width: 40%; line-height: 40px;" for="buckaroo-ideal-issuer-select">{s name="PluginsIdealIssuer" namespace="frontend/buckaroo/plugins"}Issuer{/s}</label> | ||
<div class="select-field"> | ||
<select id="buckaroo-ideal-issuer-select" name="buckaroo-extra-fields[ideal][user][buckaroo_payment_ideal_issuer]" class="buckaroo_auto_submit"> | ||
<option value="0">{s name="SelectOption" namespace="frontend/buckaroo/plugins"}Select your bank{/s}</option> | ||
{foreach from=$buckarooExtraFields.lists.issuers item=issuer} | ||
<option value="{$issuer->id}"{if $issuer->isSelected} selected{/if}>{$issuer->name}</option> | ||
{/foreach} | ||
</select> | ||
</div> | ||
|
||
<div class="select-field"> | ||
<select id="buckaroo-ideal-issuer-select" name="buckaroo-extra-fields[ideal][user][buckaroo_payment_ideal_issuer]" class="buckaroo_auto_submit"> | ||
<option value="0">{s name="SelectOption" namespace="frontend/buckaroo/plugins"}Select your bank{/s}</option> | ||
{foreach from=$buckarooExtraFields.lists.issuers item=issuer} | ||
<option value="{$issuer->id}"{if $issuer->isSelected} selected{/if}>{$issuer->name}</option> | ||
{/foreach} | ||
</select> | ||
</div> | ||
{/if} | ||
|
||
</div> | ||
<div style="display: none"> | ||
{include file='frontend/_includes/fields/parts/error_messages.tpl' name="ideal" entity="user" key="buckaroo_payment_ideal_issuer"} | ||
</div> |