e.g.

Because the file names are all random like shown above, I'd rather just display the name of the category then something like "photo x of z".
Obviously the easy way is to name my photos better, but who wants to do that?



Code: Select all
if ($value->type == 2) {
if ($value->overlib == 0) {
//this is where the filename is displayed in slimbox and as thumbnail tooltips.
//change it to display something else.
echo ' title="'. $value->title.'"';
}
}

Code: Select all
echo '<a class="'.$value->button->methodname.'"';
if ($value->type == 2) {
if ($value->overlib == 0) {
echo ' title="'. $this->category->title.'"';
}
}
echo ' href="'. $value->link.'"';