Page 1 of 1

show locator and language Text

Posted: Tue Jun 06, 2017 8:45 am
by bastingse
Hi Folks,

I added these 2 codes to a template:

Code: Select all

<?php echo languagemenu();?>
This shows a flag only

And:

Code: Select all

<?php echo locator();?>
This shows the breadcrums only

How can i show the "Choose your language" and the "You are here" Text in front of it?
I do see this text in the languagefile so there must be a way to include that, right?

Thanks already!
Emile

Re: show locator and language Text

Posted: Tue Jun 06, 2017 9:02 am
by frase

Code: Select all

<?php echo $tx['locator']['text'] . ' ' . locator();?>

Code: Select all

<?php echo $tx['languagemenu']['text'] . ' ' . languagemenu();?>

Re: show locator and language Text

Posted: Tue Jun 06, 2017 9:07 am
by bastingse
Thanks Frase, that did the trick.
Much appreciated!!

Emile