New fields in Files - Categories
Sobiech 77
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: New fields in Files - Categories
Sobiech
OP
77
From: -
From: -
Thanks!
1 Re: New fields in Files - Categories
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
I will consider this for the next major release after it require a database change.
In the meantime a small template modification which will include the category description in the title bar
Open site_header in the template editor and add the following to the PHP part:
This will show "Category: Category Description" in the title bar
In the meantime a small template modification which will include the category description in the title bar
Open site_header in the template editor and add the following to the PHP part:
global $ct, $action, $page;
if( $ct == "files" and $action == "categories" and $page )
{
$insert['page_name'] = $insert['page_name'] . ": " . $insert['page_description'];
}
This will show "Category: Category Description" in the title bar
For example: Category Name is "Browsers" but in the title bar displays "Download Browsers, Opera, Chrome, etc." (or something like that).