Zteem Posted November 18, 2019 Share Posted November 18, 2019 Hola a tod@s! Posiblemente sea una pregunta muy trivial, pero todavía estoy un poco verde en el tema. Necesitaría modificar la pantalla de confirmación de pedido de mi web. He estado mirando y creo que la que necesito modificar es el TPL del módulo de PayPal, pero al editar el archivo, veo muchas variables que me da miedo tocar jejejeje! Resumiendo, lo que necesitaría eliminar de la pantalla final, es el texto que aparece marcado en la captura adjunta. Muchísimas gracias de antemano! Link to comment Share on other sites More sharing options...
Luisejo Posted November 19, 2019 Share Posted November 19, 2019 Hola @Zteem ¿has probado a buscar ese texto en traducciones o en el propio módulo? No creo que vaya fijo en tpl. Indícanos que versión de Prestashop utilizas, el theme y la versión del módulo Paypal. Saludos. Link to comment Share on other sites More sharing options...
Zteem Posted November 19, 2019 Author Share Posted November 19, 2019 (edited) 45 minutes ago, Luisejo said: Hola @Zteem ¿has probado a buscar ese texto en traducciones o en el propio módulo? No creo que vaya fijo en tpl. Indícanos que versión de Prestashop utilizas, el theme y la versión del módulo Paypal. Saludos. Hola! El theme se llama Sebian, mi versión de Prestashop es la 1.6.1.4 y la de Paypal la 3.11.4. No he buscado el texto en traducciones. ¿Lo dices por eliminarlo y así no se vería? ¿Se quedaría un enorme hueco en blanco no? Disculpa si es una tontería lo que estoy diciendo 😅 Gracias por responder! Edited November 19, 2019 by Zteem (see edit history) Link to comment Share on other sites More sharing options...
joseantgv Posted November 19, 2019 Share Posted November 19, 2019 Ese texto es del módulo de transferencia bancaria, no de Paypal. Lo tienes en /modules/bankwire/views/templates/hook/payment_return.tpl Si vas a modificarlo copialo a /themes/NOMBRE-DE-TU-THEME/modules/bankwire/views/templates/hook/payment_return.tpl Quizás ya lo tengas sobreescrito. Link to comment Share on other sites More sharing options...
Zteem Posted November 19, 2019 Author Share Posted November 19, 2019 3 minutes ago, joseantgv said: Ese texto es del módulo de transferencia bancaria, no de Paypal. Lo tienes en /modules/bankwire/views/templates/hook/payment_return.tpl Si vas a modificarlo copialo a /themes/NOMBRE-DE-TU-THEME/modules/bankwire/views/templates/hook/payment_return.tpl Quizás ya lo tengas sobreescrito. Muchisimas gracias @joseantgv!! Entonces, he de modificar el archivo que me indicas en el primer path y copiarlo en el segundo path del directorio de mi template? o puedo modificar (comentando las líneas que no quiero que se vean) directamente en el segundo path que me indicas? Gracias por tu respuesto y por tu paciencia! 🥰 Link to comment Share on other sites More sharing options...
joseantgv Posted November 19, 2019 Share Posted November 19, 2019 El del 1r path déjalo tal como está. Revisa primero si ya lo tienes en el 2º path. Si lo tienes, haz ahí las modificaciones. Si no lo tienes, cópialo y haz ahí las modificaciones. Link to comment Share on other sites More sharing options...
Zteem Posted November 19, 2019 Author Share Posted November 19, 2019 6 minutes ago, joseantgv said: El del 1r path déjalo tal como está. Revisa primero si ya lo tienes en el 2º path. Si lo tienes, haz ahí las modificaciones. Si no lo tienes, cópialo y haz ahí las modificaciones. Así estaría correcto? {if $status == 'ok'} <p class="alert alert-success">{l s='Your order on %s is complete.' sprintf=$shop_name mod='cheque'}</p> <!--<div class="box"> {l s='Please send us a bank wire with' mod='bankwire'} <br />- {l s='Amount' mod='bankwire'} <span class="price"><strong>{$total_to_pay}</strong></span> <br />- {l s='Name of account owner' mod='bankwire'} <strong>{if $bankwireOwner}{$bankwireOwner}{else}___________{/if}</strong> <br />- {l s='Include these details' mod='bankwire'} <strong>{if $bankwireDetails}{$bankwireDetails}{else}___________{/if}</strong> <br />- {l s='Bank name' mod='bankwire'} <strong>{if $bankwireAddress}{$bankwireAddress}{else}___________{/if}</strong> {if !isset($reference)} <br />- {l s='Do not forget to insert your order number #%d in the subject of your bank wire.' sprintf=$id_order mod='bankwire'} {else} <br />- {l s='Do not forget to insert your order reference %s in the subject of your bank wire.' sprintf=$reference mod='bankwire'} {/if} <br />{l s='An email has been sent with this information.' mod='bankwire'} <br /> strong>{l s='Your order will be sent as soon as we receive payment.' mod='bankwire'}</strong <br />{l s='If you have questions, comments or concerns, please contact our' mod='bankwire'} <a class="link-bankwire" href="{$link->getPageLink('contact', true)|escape:'html':'UTF-8'}">{l s='expert customer support team' mod='bankwire'}</a>. </div> --> {else} <p class="alert alert-warning"> {l s='We noticed a problem with your order. If you think this is an error, feel free to contact our' mod='bankwire'} <a href="{$link->getPageLink('contact', true)|escape:'html':'UTF-8'}">{l s='customer service department.' mod='bankwire'}</a>. </p> {/if} Espero no molestarte más 😅 Gracias! Link to comment Share on other sites More sharing options...
joseantgv Posted November 19, 2019 Share Posted November 19, 2019 Comenta con Smarty mejor: {* código comentado *} Link to comment Share on other sites More sharing options...
Zteem Posted November 19, 2019 Author Share Posted November 19, 2019 2 minutes ago, joseantgv said: Comenta con Smarty mejor: {* código comentado *} Muchísimas 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