As I use many categories and some of the categories with several terms in it, I have blogs where the taxonomy categories show 2 or 3 lines of links at the top of the blog. As you see it here:
http://sirius-c-publishing.com/blog/perfectionism

Unfortunately, only THE FIRST LINE is functional, subsequent lines cannot be clicked, the links are dead.
Is this a known bug? I have tried different setups of the taxonomy module but it did not fix the bug.

Thanks for any help.
Pierre F. Walter
coachlog@elitemail.org

Comments

jarea’s picture

Same problem with me. Follow this issue.

jarea’s picture

I found the problem in my case. I had read somewhere that they changed templates and the problem went away. I am using bluemarine, so I switched to Freinds Electric and sure enough, the additional lines of links worked fine. I traced the difference to this.

In my themes>bluemarine>node.tpl.php I changed

print $terms

to

if ($terms):

print $terms

endif;

The following is unrelated to the fix above.

I also noticed a similar difference with $links so I made a similar change there, but I haven't had the occasion to test it yet.

Changing from

if ($links) {

};

to

if ($links):

endif;

jarea’s picture

Sorry I should have put that in code tags. The first example would be

From:

    <span class="taxonomy"><?php print $terms?></span>

To:

  <?php if ($terms): ?>
    <div class="terms"><?php print $terms ?></div>
  <?php endif; ?>

The second example would be

From:

    <?php if ($links) { ?><div class="links">&raquo; <?php print $links?></div><?php }; ?>

To:

   <?php if ($links): ?>
    <div class="links"><?php print $links ?></div>
  <?php endif; ?>
Anonymous’s picture

Version: » master
Priority: Critical » Minor
Status: Active » Postponed (maintainer needs more info)

So Pierre, should we mark this as not a problem for Taxonommy navigation but an issue for the the chosen theme based on #2? Marking as minor since we're approaching 1 year on this issue with no resolutions other than a theming comment. I was forced to change the Version value.

jerdiggity’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

http://drupal.org/project/taxnav -- Module is no longer supported.