Quote:
Originally Posted by MSeven
Thanks Larry. It almost worked  !
Only, it appears to be displaying the "header.gif", for All categories. And the {$category}.gif, not at all.
|
Ugh, sorry for making you jump through all these hoops, I keep overlooking the simple stuff.
PHP Code:
{foreach name=outer item=contact from=$breadcrumb}
{foreach item=item from=$contact}
{assign var=category value=$item|strip_tags}
{/foreach}
{/foreach}
{if $category==""}
<!-- // Header // -->
<div id="header"><a href="index.php"><img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/header.gif" width="633" height="93" border="0" alt="{$title}" /></a></div>
<!-- // Header // -->
{else}
<!-- // Header // -->
<div id="header"><a href="index.php"><img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/{$category}.gif" width="633" height="93" border="0" alt="{$title}" /></a></div>
<!-- // Header // -->
{/if}
{assign var=category value=""}