This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

New fields in Files - Categories


avatar
Sobiech 77
From: -
In the "Files -> Categories" available options are: Category name, Category Description, Category keywords, Category SEO URL (without. html). Is it possible to add additional fields like "Title", which was to appear in the title bar web browser (and Google's search results)?

For example: Category Name is "Browsers" but in the title bar displays "Download Browsers, Opera, Chrome, etc." (or something like that).

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
avatar
OP 77
From: -
Thanks! Smiling Face
1 Re: New fields in Files - Categories
avatar
Administrator
1340
From: 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:
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

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.