View Single Post
  #6 (permalink)  
Old 11-04-2006, 01:13 PM
revolver revolver is offline
Constant Pligger
 
Join Date: Oct 2006
Posts: 227
Thanks: 56
Thanked 22 Times in 18 Posts
I just noticed that if a story is in the queued section the category link in the breadcrumb links to the published category while the category link in the story details links to the queued category.

ie:
breadcrumb: home>news>story title (news links to published news)
news details: Category: news (news links to queued news)

I found the code that makes the proper category link:

{if $story_status eq "published"}
in <a href="{$category_published_url}">
{else}
in <a href="{$category_queued_url}">
{/if}
{$link_category}</a>

However I don't know how to add this to the breadcrumb?
Any ideas?
Reply With Quote