Ziele des Blogs
Nachdem wir diesen Blog gelesen haben, können wir den hinzufügenGeschäftsbedingung"Link zum Öffnen in
Aktuelles Szenario
Derzeit ist die "AGB’s"Link zeigtAGB’s"mit eigenen Texten und
Verfahren:
SCHRITT 1: –
Der auf der Standard-Checkout-Seite angezeigte Link zu den Nutzungsbedingungen befindet sich incatalogue / view / theme / default / template / checkout / payment_method.tpl, Codeblock verwendet für
<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 / agree', 'information_id ='. $ this-> config-> get ('config_checkout_id'), true), $ information_info ['title'], $ information_info ['title']);
Sie müssen diese Definition durch ersetzen
$ data ['text_agree'] = sprintf ($ this-> language-> get ('text_agree'), $ this-> url-> link ('information / information', 'information_id = 5', true), $ information_info ['title'], $ information_info ['title']);
wir haben die ersetzt
https://your_store_url/index.php?route=information/information/agree&information_id=5
das enthält nicht
https://your_store_url.com/index.php?route=information/information&information_id=5
was beinhaltet
SCHRITT
Zuletzt müssen Sie die Definition von bearbeitencatalog / language / de-de / checkout / checkout.php
In?above?file location there would be a definition as below : –
$ _ ['text_agree'] = 'Ich habe die <a href="%s" class="agree"> <b>% s </ b> </a> gelesen und bin damit einverstanden.';
Wir müssen hinzufügen
$ _ ['text_agree'] = 'Ich habe die <a href="%s" target="_blank"> <b>% s </ b> </a> gelesen und bin damit einverstanden.';
Nachdem die obigen Änderungen gespeichert wurden, können wir die "AGB’s"In einem neuen Tab verlinken auf
Zusammenfassung:
Nach den obigen Änderungen können wir die "AGB’s"In einem neuen Tab verlinken auf
HINWEIS:?This demonstration is for default template but this will work same for other templates having similar code.