So for others:
Break category at the end and insert category title
(works fine with filtering):
Create new blog layout ("myblog") Template and edit file
components/com_flexicontent/templates/myblog/
choose style (standard, html5 or xhtml) and edit file
"category_items" or "category_items_html5"
Go to specific Position (for me position is "introblock") and find
Code:
$fc_item_classes = 'fc_bloglist_item';
replace with
Code:
$fc_item_classes = 'fc_bloglist_item'.
($i==0 || ($items[$i-1]->catid != $items[$i]->catid) ? ' next_cat_start' : '');
$new_cat_start = ($i==0 || ($items[$i-1]->catid != $items[$i]->catid));
global $globalcats;
if ($new_cat_start) {
echo '<div class="cat_title cat_titleid_'.$items[$i]->catid.'">'.$globalcats[$item->catid]->title.'</div>';
};
create classes in your css file:
.next_cat_start // This is for the first <li> of each category
.cat_title // for every title
and if you Need
.cat_titleid_123 //replace 123 with your title id!
I Need it because of some color Relations in each category.
Maybe there is a better solution for showing the title. but this works great for me.
Regards and big thanks to development
EsPi