Page 1 of 1

{breadcrumbs starttext="$mystring" root='Home' delimiter='»'} not working

Posted: Fri Jul 17, 2009 10:49 am
by okoweb
Salut,
My english not fine.
I have do that for mle 1.6

Code: Select all

{tr_key key="you_are_here" lang="$lang" assign="mystring"} 
{breadcrumbs starttext="$mystring" root='Home' delimiter='»'}
This code not working but this another code

Code: Select all

{tr_key key="you_are_here"} //print You are here or Vous êtes ici en fonction de la langue
Help !

Re: {breadcrumbs starttext="$mystring" root='Home' delimiter='»'} not working

Posted: Fri Jul 17, 2009 12:33 pm
by alby

Code: Select all

[quote="okoweb"]
{tr_key key="you_are_here" lang="$lang" assign="mystring"} 
{breadcrumbs starttext="$mystring" root='Home' delimiter='»'}
This code not working but this another code

Code: Select all

{tr_key key="you_are_here"} //print You are here or Vous êtes ici en fonction de la langue
[/quote]

Try with:
{breadcrumbs starttext=`$mystring` root='Home' delimiter='»'}
Alby

Re: {breadcrumbs starttext="$mystring" root='Home' delimiter='»'} not working

Posted: Sun Jul 19, 2009 2:09 pm
by okoweb
alby wrote: Try with:
{breadcrumbs starttext=`$mystring` root='Home' delimiter='»'}
I do that, not working

Code: Select all

{tr_key key='you_are_here' lang=$lang assign='mystring'} 
{breadcrumbs starttext=`$mystring` root='Home' delimiter='»'}
Help!!!!

Thank

Re: {breadcrumbs starttext="$mystring" root='Home' delimiter='»'} not working

Posted: Sun Jul 19, 2009 4:19 pm
by hugodelir
Hello,
before version 1.6, I am use this solution :

Code: Select all

 {if $lang =="en_US"}{breadcrumbs starttext='You are here' root='Home' delimiter='»'}{/if}
          {if $lang =="fr_FR"}{breadcrumbs starttext='Vous êtes ici' root='Home' delimiter='»'}{/if}
but now is not working anymore

Re: {breadcrumbs starttext="$mystring" root='Home' delimiter='»'} not working

Posted: Mon Jul 20, 2009 7:00 am
by okoweb
hugodelir wrote: Hello,
before version 1.6, I am use this solution :

Code: Select all

 {if $lang =="en_US"}{breadcrumbs starttext='You are here' root='Home' delimiter='»'}{/if}
          {if $lang =="fr_FR"}{breadcrumbs starttext='Vous êtes ici' root='Home' delimiter='»'}{/if}
but now is not working anymore
This solution is working on my website.