Thats not exactly what I mean
In the header template I have made a menusystem, so I have placed the folowing tags in the header.
{if categories}
{categoriestextiel}
{endif categories}
I only want to show the links in the menu so I used the folowing code in the category_bit.
<table border="0" cellspacing="0" cellpadding="0" bgcolor="d9ab00">
<tr>
<td valign="top">
<img src="{template_url}/images/folder.gif" width="20" height="13" alt="" />
</td>
<td>
<a href="http://www.eu-basic.com/prijzen2/categories.php?cat_id={cat_id}" class="maincat">{cat_name}</a>
</td>
</tr>
</table>
The problem
Now I want a category overview in the category template. Thats why I want a second category_bit, by example category_bit2
In the second category category_bit2 I want to place the folowing tag, this tag shows 1 thumbnail of each subcategory.
<!-- {if random_cat_image_file}<a href="{cat_url}"><img src="{random_cat_image_file}" border="1"></a>{endif random_cat_image_file} -->
I want to call this category_bit2 in the category template by example with:
{if categories2}
{categories2}
{endif categories2}
How can I realise that I can call the second "category_bit2" with the tags above, and how can I make the folowing link work correct in the second template?
<!-- {if random_cat_image_file}<a href="{cat_url}"><img src="{random_cat_image_file}" border="1"></a>{endif random_cat_image_file} -->
I hope someone can help me.