Add new payment and shipping parsers for various integrations
- Implemented Google Pay parser in bongooglepay.js - Added Buckaroo 3 payment parser in buckaroo3.js - Introduced DataTrans CW Mastercard parser in datatranscw.js - Created DataTrans CW Credit Card parser in datatranscw_creditcard.js - Developed DHL Assistant shipping parser in dhlassistant.js - Added Estimated Delivery parser in estimateddelivery.js - Implemented Floapay payment parser in floapay.js - Created FS Pickup at Store shipping parser in fspickupatstore.js - Developed Generic Iframe parser in generic_iframe_parser.js - Added Geodis Officiel shipping parser in geodisofficiel.js - Implemented Glob Kurier module shipping parser in globkuriermodule.js - Created Latvija Post Express Pickup Terminal parser in latvijaspastsexpresspastspostterminalslv.js - Developed LP Shipping parser in lpshipping.js - Added Mijora Venipak parser in mijoravenipak.js - Implemented Apple Pay parser in pm_applepay.js - Created Przelewy24 payment parser in przelewy24.js - Developed Pshugls shipping parser in pshugls.js - Added Redsys Insite payment parser in redsysinsite.js - Implemented Tpay payment parser in tpay.js - Updated third-party integration documentation for FedEx DotCom
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* @author Peter Sliacky (Zelarg)
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*}
|
||||
{if $tc_config->show_i_am_business_delivery}
|
||||
{if $z_tc_config->show_i_am_business_delivery}
|
||||
<style>
|
||||
{if $hideBusinessFieldsDelivery}
|
||||
{literal}
|
||||
@@ -29,7 +29,7 @@
|
||||
{/if}
|
||||
</style>
|
||||
{/if}
|
||||
{if $tc_config->show_i_am_private_delivery}
|
||||
{if $z_tc_config->show_i_am_private_delivery}
|
||||
<style>
|
||||
{if $hidePrivateFieldsDelivery}
|
||||
{literal}
|
||||
@@ -52,24 +52,28 @@
|
||||
<div class="inner-wrapper">
|
||||
<a style="display: none;" href="javascript:void(0);" class="amazonpay-change-address">{l s='Change address' mod='thecheckout'}</a>
|
||||
|
||||
{if $tc_config->show_i_am_business_delivery}
|
||||
<div class="business-customer">
|
||||
<span class="custom-checkbox">
|
||||
<input id="i_am_business_delivery" type="checkbox" data-link-action="x-i-am-business-delivery"
|
||||
{if !$hideBusinessFieldsDelivery}checked="checked"{/if} disabled="disabled">
|
||||
<span><i class="material-icons rtl-no-flip checkbox-checked check-icon"></i></span>
|
||||
<label for="i_am_business_delivery">{l s='I am a business customer' mod='thecheckout'}</label>
|
||||
</span>
|
||||
</div>
|
||||
{/if}
|
||||
{if $tc_config->show_i_am_private_delivery}
|
||||
<div class="private-customer">
|
||||
<span class="custom-checkbox">
|
||||
<input id="i_am_private_delivery" type="checkbox" data-link-action="x-i-am-private-delivery"
|
||||
{if !$hidePrivateFieldsDelivery}checked="checked"{/if} disabled="disabled">
|
||||
<span><i class="material-icons rtl-no-flip checkbox-checked check-icon"></i></span>
|
||||
<label for="i_am_private_delivery">{l s='I am a private customer' mod='thecheckout'}</label>
|
||||
</span>
|
||||
{if $z_tc_config->show_i_am_business || $z_tc_config->show_i_am_private}
|
||||
<div class="business-private-checkboxes form-group">
|
||||
{if $z_tc_config->show_i_am_business_delivery}
|
||||
<div class="business-customer">
|
||||
<span class="custom-checkbox">
|
||||
<input id="i_am_business_delivery" type="checkbox" data-link-action="x-i-am-business-delivery"
|
||||
{if !$hideBusinessFieldsDelivery}checked="checked"{/if} disabled="disabled">
|
||||
<span><i class="material-icons rtl-no-flip checkbox-checked check-icon"></i></span>
|
||||
<label for="i_am_business_delivery">{l s='I am a business customer' mod='thecheckout'}</label>
|
||||
</span>
|
||||
</div>
|
||||
{/if}
|
||||
{if $z_tc_config->show_i_am_private_delivery}
|
||||
<div class="private-customer">
|
||||
<span class="custom-checkbox">
|
||||
<input id="i_am_private_delivery" type="checkbox" data-link-action="x-i-am-private-delivery"
|
||||
{if !$hidePrivateFieldsDelivery}checked="checked"{/if} disabled="disabled">
|
||||
<span><i class="material-icons rtl-no-flip checkbox-checked check-icon"></i></span>
|
||||
<label for="i_am_private_delivery">{l s='I am a private customer' mod='thecheckout'}</label>
|
||||
</span>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -78,10 +82,10 @@
|
||||
{block name="address_delivery_form_fields"}
|
||||
<section class="form-fields">
|
||||
{block name='form_fields'}
|
||||
{if $tc_config->show_i_am_business_delivery}
|
||||
{if $z_tc_config->show_i_am_business_delivery}
|
||||
<div class="business-fields-container"><div class="business-fields-separator"></div></div>
|
||||
{/if}
|
||||
{if $tc_config->show_i_am_private_delivery}
|
||||
{if $z_tc_config->show_i_am_private_delivery}
|
||||
<div class="private-fields-container"><div class="private-fields-separator"></div></div>
|
||||
{/if}
|
||||
{foreach from=$formFieldsDelivery item="field"}
|
||||
|
||||
Reference in New Issue
Block a user