Reputation: 2443
in a tpl file, there are code as this:
{$LANG.globalyouarehere}: {$breadcrumbnav}
now, i want to do if the url is https://example.com/1.php
.it will add a welcome
text before the {$breadcrumbnav}
. if others, it will not add it.
the following is my ways, but it doesn't work and how to correct it?
{if $_SERVER['REQUEST_URI']==‘1.php’}welcome {$breadcrumbnav} {else}{$breadcrumbnav} {/if}
Upvotes: 1
Views: 75
Reputation: 5084
try this
{if $_SERVER['REQUEST_URI']==‘/1.php’}welcome {$breadcrumbnav} {else}{$breadcrumbnav} {/if}
Upvotes: 1