BaNt Posted July 19, 2015 Share Posted July 19, 2015 Buenas, Pues resulta que me he fijado que en el último paso, en la cesta de la compra dónde se seleccionan las formas de pago, desde el dispositivo móvil se ven todas las fotos/botones de las formas de pago pero la de paypal sale totalmente gris con una "?" y en definitiva no se aprecia esta forma de pago, sin embargo desde el pc lo veo correctamente, adjunto una imagen de la parte que comento que falla, a ver si me podeis echar una mano: (lo del cuadro rojo es lo que veo en el móvil) gracias Link to comment Share on other sites More sharing options...
joseantgv Posted July 20, 2015 Share Posted July 20, 2015 Modifica el fichero /modules/paypal/views/templates/hook/express_checkout_payment.tpl y pega este contenido: {* * 2007-2015 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2015 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if $smarty.const._PS_VERSION_ >= 1.6} <div class="row"> <div class="col-xs-12 col-md-6"> <p class="payment_module paypal"> {if $PayPal_in_context_checkout == 1} <a href="javascript:void(0)" onclick="" id="paypal_process_payment" title="{l s='Pay with PayPal' mod='paypal'}"> {else} <a href="javascript:void(0)" onclick="$('#paypal_payment_form').submit();" title="{l s='Pay with PayPal' mod='paypal'}"> {/if} {*if isset($use_mobile) && $use_mobile} <img src="{$base_dir_ssl|escape:'htmlall':'UTF-8'}modules/paypal/views/img/logos/express_checkout_mobile/CO_{$PayPal_lang_code|escape:'htmlall':'UTF-8'}_orange_295x43.png" /> {else*} {if isset($logos.LocalPayPalHorizontalSolutionPP) && $PayPal_payment_method == $PayPal_integral} <img src="{$logos.LocalPayPalHorizontalSolutionPP|escape:'htmlall':'UTF-8'}" alt="{$PayPal_content.payment_choice|escape:'htmlall':'UTF-8'}" height="48px" /> {else} <img src="{$logos.LocalPayPalLogoMedium|escape:'htmlall':'UTF-8'}" alt="{$PayPal_content.payment_choice|escape:'htmlall':'UTF-8'}" /> {/if} {$PayPal_content.payment_choice} {*/if*} </a> </p> </div> </div> <style> p.payment_module.paypal a {ldelim} padding-left:17px; {rdelim} </style> {else} <p class="payment_module"> <a href="javascript:void(0)" id="paypal_process_payment" title="{l s='Pay with PayPal' mod='paypal'}"> {if isset($use_mobile) && $use_mobile} <img src="{$base_dir_ssl}modules/paypal/views/img/logos/express_checkout_mobile/CO_{$PayPal_lang_code}_orange_295x43.png" /> {else} {if isset($logos.LocalPayPalHorizontalSolutionPP) && $PayPal_payment_method == $PayPal_integral} <img src="{$logos.LocalPayPalHorizontalSolutionPP}" alt="{$PayPal_content.payment_choice|escape:'htmlall':'UTF-8'}" height="48px" /> {else} <img src="{$logos.LocalPayPalLogoMedium}" alt="{$PayPal_content.payment_choice|escape:'htmlall':'UTF-8'}" /> {/if} {$PayPal_content.payment_choice} {/if} </a> </p> {/if} {if $PayPal_in_context_checkout == 1} <input type="hidden" id="in_context_checkout_enabled" value="1"> {else} <script> $(document).ready(function(){ $('#paypal_process_payment').click(function(){ $('#paypal_payment_form').submit(); }) }); </script> {/if} <form id="paypal_payment_form" action="{$base_dir_ssl}modules/paypal/express_checkout/payment.php" data-ajax="false" title="{l s='Pay with PayPal' mod='paypal'}" method="post"> <input type="hidden" name="express_checkout" value="{$PayPal_payment_type|escape:'htmlall':'UTF-8'}"/> <input type="hidden" name="current_shop_url" value="{$PayPal_current_page|escape:'htmlall':'UTF-8'}" /> <input type="hidden" name="bn" value="{$PayPal_tracking_code|escape:'htmlall':'UTF-8'}" /> </form> Recuerda limpiar caché. Link to comment Share on other sites More sharing options...
BaNt Posted July 21, 2015 Author Share Posted July 21, 2015 solucionado a la primera, asi da gusto. Gracias Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now