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:
@@ -22,34 +22,37 @@
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
{block name='login_form'}
|
||||
{if !$tc_config->move_login_to_account}<div class="inner-wrapper">{/if}
|
||||
{if !$z_tc_config->move_login_to_account}<div class="inner-wrapper">{/if}
|
||||
<div class="offer-login">
|
||||
<div class="already-account-label">
|
||||
{l s='Already have an account?' d='Shop.Theme.Customeraccount'}
|
||||
</div>
|
||||
<div class="classic-login">
|
||||
<a class="log-in" href="#" data-link-action="x-offer-login">
|
||||
{l s='Zaloguj się' d='Shop.Theme.Customeraccount'}
|
||||
{l s='Log in instead!' d='Shop.Theme.Customeraccount'}
|
||||
</a>
|
||||
</div>
|
||||
{if isset($HOOK_OASL_CUSTOM)}
|
||||
<div class="social-login" data-trans-or="{l s='OR' mod='thecheckout'}">
|
||||
{$HOOK_OASL_CUSTOM nofilter}
|
||||
</div>
|
||||
{elseif ($tc_config->social_login_fb || $tc_config->social_login_google) }
|
||||
{elseif ($z_tc_config->social_login_fb || $z_tc_config->social_login_google || $paypal_express_checkout) }
|
||||
<div class="social-login" data-trans-or="{l s='OR' mod='thecheckout'}">
|
||||
{if $tc_config->social_login_fb && $tc_config->social_login_fb_app_id && $tc_config->social_login_fb_app_secret}
|
||||
{if $paypal_express_checkout}
|
||||
<div id="tc-paypal-express-checkout">{$paypal_express_checkout nofilter}</div>
|
||||
{/if}
|
||||
{if $z_tc_config->social_login_fb && $z_tc_config->social_login_fb_app_id && $z_tc_config->social_login_fb_app_secret}
|
||||
{*<div class="fb-login-button" data-max-rows="1" data-onlogin="fb_checkLoginState();" data-size="medium" data-button-type="login_with" data-show-faces="false" data-auto-logout-link="false" data-use-continue-as="false"></div>*}
|
||||
<div id="tc-facebook-signin" class="tc-social-login-btn"><span class="social-logo"><span class="facebook-logo"></span></span>{l s='Sign in with Facebook' mod='thecheckout'}</div>
|
||||
{/if}
|
||||
{if $tc_config->social_login_google && $tc_config->social_login_google_client_id && $tc_config->social_login_google_client_secret}
|
||||
{if $z_tc_config->social_login_google && $z_tc_config->social_login_google_client_id && $z_tc_config->social_login_google_client_secret}
|
||||
{*Google+ login <div class="g-signin2" data-onsuccess="tc_onSignIn"></div>*}
|
||||
<div id="tc-google-signin"></div>
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<form id="login-form" action="{block name='login_form_actionurl'}{$action}{/block}" method="post">
|
||||
<form id="login-form" action="{block name='login_form_actionurl'}{$action|escape:'javascript':'UTF-8'}{/block}" method="post">
|
||||
|
||||
<section class="form-fields">
|
||||
{block name='login_form_fields'}
|
||||
@@ -76,7 +79,7 @@
|
||||
{/block}
|
||||
|
||||
<div class="forgot-password">
|
||||
<a href="{$urls.pages.password}" rel="nofollow">
|
||||
<a href="{$urls.pages.password|escape:'javascript':'UTF-8'}" rel="nofollow">
|
||||
{l s='Forgot your password?' d='Shop.Theme.Customeraccount'}
|
||||
</a>
|
||||
</div>
|
||||
@@ -89,5 +92,5 @@
|
||||
</button>
|
||||
<div class="error-enter-email" style="display: none">{l s='Please enter your email address to proceed with order.' mod='thecheckout'}</div>
|
||||
</div>
|
||||
{if !$tc_config->move_login_to_account}</div>{/if}
|
||||
{if !$z_tc_config->move_login_to_account}</div>{/if}
|
||||
{/block}
|
||||
|
||||
Reference in New Issue
Block a user