I'm not sure why, but the "See all stories by..." titles are not outputting, despite there being some code in the module that references it. It is planned for but not implemented maybe?

Comments

gregarios’s picture

Title: No titles produced for Author Links despite coding for it » No titles produced for Author Links despite coding for it (see fix)
Priority: Normal » Major

I found the problem. The title attributes don't work the way you have them all throughout the module.

Wherever you have:
array('title' => t('whatever'))

You instead should have:
array('attributes' => array('title' => t('whatever')))

And since it wasn't working anyway, as a side note, if you'll just change line 291 from this:
$author_names[] = l($term->name, taxonomy_term_path($term), array('title' => t('See all stories by @author', array('@author' => $term->name))));

To this:
$author_names[] = l($term->name, taxonomy_term_path($term), array('attributes' => array('title' => $term->description)));

Then my next issue and this issue could be satisfied at the same time by allowing someone to use JQuery to do what they want the title text of each author. :-)