Hi,
First, duplicate the blog template by the template manager of Flexicontent. Edit your category and assign the new template to the category.
All templates are in the folder
components/com_flexicontent/templates.
In each template folder, you will find :
css/category.css
css/items.css
The css of your template
category.php
The main file of your category view.
In this file, you will find code like:
Code:
echo $this->loadTemplate('category');
to load the file category_category.php
or
Code:
echo $this->loadTemplate('items');
to load the file category_items.php
category.png
Category view thumbnail
category.xml
List of the parameters of the category template
You can load params in the php file using :
Code:
$this->params->get('param_name', 'default_value'))
category_alpha.php
The alpha_index of your template
category_category.php
The way to display the introduction of the template (category image, description,...)
category_items.php
This file display the items of the category.
Here you can set how you want the items will be displayed and define the positions where you can display item fields
category_subcategories.php
The way to display the subcategories list.
item.php
Template for the item view
item.png
Thumbnail of the item view
item.xml
Parameters of the item view
--
To display several images, the minigallery plugin is great.
But you can edit the item.php and add postion to display images to.
You can find some information in French here :
blog.netassopro.com/tutoriel-tem
... e-contenu/
And here :
www.gnomeontherun.com/index.php
? ... l&Itemid=7
I hope my english is understandable.
Regards