Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

How to use?

Quote Reply
How to use?
Hello!

I have problems to get one tag from the category table to the pass to the templates and publish on the category pages.

Does one have to add something extra somewhere or is this only for Links table?
Quote Reply
Re: How to use? In reply to
Yes, look in nph-build.cgi:

Code:
$OUT{category_id} = $category_r->{'ID'};
$OUT{category_name} = $category_r->{'Name'};
$OUT{header} = $category_r->{'Header'};
$OUT{footer} = $category_r->{'Footer'};
$OUT{meta_name} = $category_r->{'Meta_Description'};
$OUT{meta_keywords} = $category_r->{'Meta_Keywords'};
$OUT{description} = $category_r->{'Description'};

and just add your extra field in there.

Cheers,

Alex