Hello
hhmm, the filtering has changed a lot since v1.5.x days
e.g. we have check, radio, text ranges, drop-down ranges, date picker, checkbox-image, etc displays, item conting, and many search/filter/alpha FORM options
the templates needs to be updated
1. Edit all non-built in template file:
category_items.php
and replace:
Code:
<?php if ((($this->params->get('use_filters', 0)) && $this->filters) || ($this->params->get('use_search')) || ($this->params->get('show_alpha', 1))) : ?>
<form action="<?php echo $this->action; ?>" method="post" id="adminForm">
...
...
...
</form>
<?php endif; ?>
with:
Code:
<?php
ob_start();
// Form for (a) Text search, Field Filters, Alpha-Index, Items Total Statistics, Selectors(e.g. per page, orderby)
// If customizing via CSS rules or JS scripts is not enough, then please copy the following file here to customize the HTML too
include(JPATH_SITE.DS.'components'.DS.'com_flexicontent'.DS.'tmpl_common'.DS.'listings_filter_form.php');
$filter_form_html = trim(ob_get_contents());
ob_end_clean();
if ( $filter_form_html ) {
echo '<div class="group">'."\n".$filter_form_html."\n".'</div>';
}
?>
2. then edit component configuration and in the "Content Lists" TAB, find the search/filter/Alpha options and customize the display of the new form
e.g. i updated template:
cemetery_category