PDA

View Full Version : Tags


libeco
10-15-2007, 06:48 PM
I'm trying to use <TAG_IMG_LIST> in the same way as <IMAGE_CATEGORY>, at least in the same style on the page which shows my image. Somehow however, <TAG_IMG_LIST> (and all other tag-templatetags for that matter) displays as:
Tags:
tag1,tag2 etc.
While <IMAGE_CATEGORY> displays as:
Category: [cat1] [cat2] etc.

In the generated source I see a <br> after the word Tags. Is there somewhere in the code where I can delete it? And where can I add (or delete) the [ and ]

THNX!

Dkozikowski
10-15-2007, 10:11 PM
You can alter the way the category links are displayed quite easily.

Login to your admin panel. Goto Options >> Template and look for the heading "CATEGORY LINKS FORMAT".

GeoS
10-16-2007, 09:10 AM
In /addons/paged_archive.php find:

$tags_img = $lang_tags;
$tags_paged_img = $tags_img;

and replace to:

$tags_img = "";
$tags_paged_img = $tags_img;

Dennis
10-16-2007, 09:47 AM
@Geos: why don't change it in the language file instead?

libeco
10-16-2007, 07:38 PM
THNX guys, changed it in the language file and the admin...