Active
Project:
Author Taxonomy
Version:
6.x-1.8
Component:
Miscellaneous
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 May 2012 at 07:11 UTC
Updated:
17 May 2012 at 17:50 UTC
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
Comment #1
gregarios commentedI 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. :-)