Objetivos del blog.
Después de leer este blog podremos añadir elTérminos y Condiciones"enlace para abrirlo en
Escenario actual
En la actualidad, el "Términos y condiciones "enlace muestraTérminos y condiciones "tener textos personalizados y
Procedimiento:
PASO 1: –
El enlace de Términos y condiciones que se muestra en la página de pago por defecto reside encatalog / view / theme / default / template / checkout / payment_method.tpl, Bloque de código utilizado para
<div class = "pull-right"> <? php echo $ text_agree; ?>
$ text_agree?is the variable that prints the link on?page?and this variable is set at location?catalog / controller / checkout / payment_method.php
Variable
$ data ['text_agree'] = sprintf ($ this-> language-> get ('text_agree'), $ this-> url-> link ('information / information / agreement', 'information_id ='. $ this-> config-> get ('config_checkout_id'), true), $ information_info ['title'], $ information_info ['title']);
Necesitas reemplazar esta definición con
$ data ['text_agree'] = sprintf ($ this-> language-> get ('text_agree'), $ this-> url-> link ('information / information', 'information_id = 5', true), $ information_info ['title'], $ information_info ['title']);
hemos reemplazado el
https://your_store_url/index.php?route=information/information/agree&information_id=5
que no contiene
https://your_store_url.com/index.php?route=information/information&information_id=5
que contiene
PASO
Por último, tienes que editar la definición decatálogo / idioma / en-gb / checkout / checkout.php
In?above?file location there would be a definition as below : –
$ _ ['text_agree'] = 'He leído y acepto el <a href="%s" class="agree"> <b>% s </b> </a>';
Tenemos que añadir
$ _ ['text_agree'] = 'He leído y acepto el <a href="%s" target="_blank"> <b>% s </b> </a>';
Después de guardar los cambios anteriores, podremos abrir el "Términos y condiciones "enlace en una nueva pestaña en
Resumen:
Después de seguir los cambios anteriores, podremos abrir el "Términos y condiciones "enlace en una nueva pestaña en
NOTA: ?This demonstration is for default template but this will work same for other templates having similar code.