Obiettivi del blog
Dopo aver letto questo blog saremo in grado di aggiungere ilTermini e condizioni"link per aprirlo dentro
Scenario attuale
Attualmente, il " Termini & Condizioni"mostra link Termini & Condizioni"avere testi personalizzati e
Procedura:
STEP 1: –
Il link Termini e condizioni visualizzato nella pagina di pagamento predefinita risiede inCatalogo / view / theme / default / template / cassa / payment_method.tpl, Blocco di codice utilizzato per
<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?Catalogo / regolatore / cassa / payment_method.php
Variabile
$ data ['text_agree'] = sprintf ($ this-> language-> get ('text_agree'), $ this-> url-> link ('informazioni / informazioni / accetta', 'information_id ='. $ this-> config-> get ('config_checkout_id'), true), $ information_info ['title'], $ information_info ['title']);
È necessario sostituire questa definizione con
$ data ['text_agree'] = sprintf ($ this-> language-> get ('text_agree'), $ this-> url-> link ('informazioni / informazioni', 'information_id = 5', vero), $ information_info ['title'], $ information_info ['title']);
abbiamo sostituito il
https://your_store_url/index.php?route=information/information/agree&information_id=5
quello non contiene
https://your_store_url.com/index.php?route=information/information&information_id=5
che contiene
PASSO
Infine, devi modificare la definizione diCatalogo / lingua / it-IT / cassa / checkout.php
In?above?file location there would be a definition as below : –
$ _ ['text_agree'] = 'Ho letto e accetto il <a href="%s" class="agree"> <b>% s </ b> </a>';
Dobbiamo aggiungere
$ _ ['text_agree'] = 'Ho letto e accetto il <a href="%s" target="_blank"> <b>% s </ b> </a>';
Dopo aver salvato le modifiche di cui sopra, saremo in grado di aprire il " Termini & Condizioni"link in una nuova scheda su
Sommario:
Dopo aver seguito le modifiche di cui sopra, saremo in grado di aprire il " Termini & Condizioni"link in una nuova scheda su
NOTA: ?This demonstration is for default template but this will work same for other templates having similar code.