An external link(index.php?cl=marketplace . its a designer module on my site) isnt current/active, when its open, as categories are (for some reason), and i wonder how i can do, so it will be that?
i was thinking the work had to be done in the topcategories.tpl within these lines:
<li [{if $ocat->expanded}]class=“current”[{/if}]>
<a [{if $ocat->expanded}]class=“current”[{/if}] href="[{$ocat->getLink()}]" style=“padding-left:20px;”>[{$ocat->oxcategories__oxtitle->value}][{ if $oView->showCategoryArticlesCount() && ($ocat->getNrOfArticles() > 0) }] ([{$ocat->getNrOfArticles()}])[{/if}]</a>
But where do you want me to place the peace of code. Now i put it at the top of topcategories.tpl
[{if $smarty.get.cl == “marketplace”}] class=“current” [{/if}] [COLOR=“SeaGreen”]<–
[{oxscript include=“js/widgets/oxtopmenu.js” priority=10 }]
[{oxscript add="$(’#navigation’).oxTopMenu();"}][/COLOR]
…
and that does the same. it simply writes class=“current” on the page. doesnt look like it apply’s it http://keandesign.dk/index.php?cl=marketplace
Edit:
Now tryed adding the extra code you added:
<li [{if $ocat->expanded}]class=“current”[{/if}]>
<a [{if $ocat->expanded}]class=“current”[{elseif $smarty.get.cl == “marketplace”}] [{/if}] href="[{$ocat->getLink()}]" style=“padding-left:20px;”>[{$ocat->oxcategories__oxtitle->value}][{ if $oView->showCategoryArticlesCount() && ($ocat->getNrOfArticles() > 0) }] ([{$ocat->getNrOfArticles()}])[{/if}]</a>
Didnt do anything.
I added a little to what you suggested, and when “Markedsplads” is current, all the links become current, until you click on one of them, then only that one will be.:
<li [{if $ocat->expanded}]class=“current”[{/if}]>
<a [{if $ocat->expanded}]class=“current”[{elseif $smarty.get.cl == “marketplace”}] [COLOR=“Red”]class=“current” [{/if}] href="[{$ocat->getLink()}]" style=“padding-left:20px;”>[{$ocat->oxcategories__oxtitle->value}][{ if $oView->showCategoryArticlesCount() && ($ocat->getNrOfArticles() > 0) }] ([{$ocat->getNrOfArticles()}])[{/if}]</a>[/COLOR]
Line 51 is where we have added the below code. It makes all the links active/current, when you are within “marketplace”, when it should only be marketplace, that is current…:
[{elseif $smarty.get.cl == “marketplace”}] class=“current”
1: edit the template of your marketplace and add “marketplace=’‘Markedplads’” to the [{include }] tag, so you gonna get something like this:
[{include file="layout/page.tpl" ..... marketplace="Markedplads"}]
(where "markedplads" is the Title of your link in the top navigation)
2: now in the topcategories.tpl you can use this:
when you are on this page (basically displaying the template of the class) there will be a new var "marketplace", which contains the title of the link.
and by checking if every link's title equals to $marketplace while being on marketplace page you will find the one, that equals and mark it as current
vanilla, index.php?cl=marketplace has to be put into external link within the category.
any ideas to how i can get it to work again? have the same problem with index.php?cl=contact . guess its only clean categories, which works fine. not when you use external link.