Hello
you should check which files include which file, it may take some time, but to avoid the above here is what to do
the alpha_index is included like this
tmpl_common\listings_filter_form_body.php
so:
1. copy files (files mentioned below, are inside
components\com_flexicontent folder):
tmpl_common\listings_filter_form.php
tmpl_common\listings_filter_form_body.php
inside your template folder:
e.g.
templates\blog-1\
2. edit file:
templates\blog-1\category_items.php
and change line:
Code:
include(JPATH_SITE.DS.'components'.DS.'com_flexicontent'.DS.'tmpl_common'.DS.'listings_filter_form.php');
to be:
Code:
include('listings_filter_form.php');
3. edit file:
templates\blog-1\listings_filter_form.php
change line:
Code:
include(JPATH_SITE.DS.'components'.DS.'com_flexicontent'.DS.'tmpl_common'.DS.'listings_filter_form_body.php');
to be:
Code:
include('listings_filter_form_body.php');
4. edit file:
templates\blog-1\listings_filter_form_body.php
find lines:
Code:
// Alpha-Index
if ($this->params->get('show_alpha', 1)) :
echo $this->loadTemplate('alpha');
endif;
and move it to the file/place that you want
e.g. move it at the top of
templates\blog-1\category.php
Regards