Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Admin: Category Browser (Folder open image)

Quote Reply
Admin: Category Browser (Folder open image)
Hi,

I just noticed that when using the category browser in Netscape 4.7 the 'folder open' image doesn't appear, so when I'm browsing a sub-category with the same name as another sub-cat I can't tell which 'parent' it belongs to.

Is there a bug-fix for this, or alternatively a way of displaying the full category path name in the top of the window?

All the best
Shaun

Quote Reply
Re: Admin: Category Browser (Folder open image) In reply to
Okay, figured out how to display the full category path in the category browser. I'm not sure if it's useful for anyone else, but it's simple enough to do if it's of any interest:

Edit admin/links/browser.pm at sub category_click:

$category->select ( { ID => $category_id }, ['ID', 'Name', 'Number_of_Links'] )

add ... $category->select ( { ID => $category_id }, ['ID', 'Name', 'Number_of_Links', 'Full_Name'] )

... than at ... $self->print_template ( "browser_category.html",

add ... Long => $info->{Full_Name},

... and in /templates/admin/browser_category.html

Change the second "Browse: <%Name%>" ... to ... "Browse: <%Long%>"

All the best
Shaun