Cele bloga
Po przeczytaniu tego bloga będziemy mogli dodaćZasady i warunki„link, aby go otworzyć
Aktualny scenariusz
Obecnie „Zasady i Warunki„pokazuje linkZasady i Warunki„posiada własne teksty i
Procedura:
KROK 1: –
Link Warunki znajduje się na domyślnej stronie kasycatalog / view / theme / default / template / checkout / payment_method.tpl, Blok kodu używany do
<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?katalog / kontroler / checkout / payment_method.php
Zmienna
$ 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']);
Musisz zastąpić tę definicję
$ data ['text_agree'] = sprintf ($ this-> language-> get ('text_agree'), $ this-> url-> link ('informacje / informacje', 'information_id = 5', true), $ information_info ['title'], $ information_info ['title']);
zastąpiliśmy
https://your_store_url/index.php?route=information/information/agree&information_id=5
który nie zawiera
https://your_store_url.com/index.php?route=information/information&information_id=5
który zawiera
KROK
Na koniec musisz edytować definicjęcatalog / language / en-gb / checkout / checkout.php
In?above?file location there would be a definition as below : –
$ _ ['text_agree'] = 'Przeczytałem i zgadzam się z <a href="%s" class="agree"> <b>% s </b> </a>';
Musimy dodać
$ _ ['text_agree'] = 'Przeczytałem i zgadzam się z <a href="%s" target="_blank"> <b>% s </b> </a>';
Po zapisaniu powyższych zmian będziemy mogli otworzyć „Zasady i Warunki„link w nowej karcie na
Podsumowanie:
Po wykonaniu powyższych zmian będziemy mogli otworzyć „Zasady i Warunki„link w nowej karcie na
UWAGA:?This demonstration is for default template but this will work same for other templates having similar code.