Access comments individually. Originally I wanted the most recent first but I haven't hacked a way to reorder the numbers last to first so I couldn't link to a comment by place
[/skins/my_skin/_item.feedback.inc.php]
around line 175
added new variable $mrf (most frequent first) and set it to empty if there is no title or technically no comment.
Code
if( empty($disp_title) ) | |
{ // Still no title | |
$disp_title[] = T_('No feedback yet'); | |
$mrl = ""; | |
} | |
else $mrl = "<em> Most Recent Last</em>"; | |
| |
if( $params['disp_section_title'] ) | |
{ // Display title | |
echo $params['before_section_title'].' '; | |
echo implode( ', ', $disp_title); | |
echo $mrl; | |
echo $params['after_section_title']; | |
} |