I have a similar problem to the one mentioned here:
flexicontent.org/forum/21-troubleshootin...lists-filtering.html
But instead of the wrong menu item, none is active, so my URL looks like this after filtering:
/component/flexicontent/32-categoryalias.html?cc=e0ee36c1bd7c3dc761a0d594a4b76f5f
Obviously, the filtering module is not displayed any more, as it's restricted to the menu item i would like to display the list and filter. I helped my self with an override of the filter module's tmpl output, but the URL is still a generic component URL instead of my menu item's one... Any suggestions?
***
The override I am using for now, if some one is interested:
/modules/mod_flexifilter/tmpl/default.php
I added this before the form's end tag "</form>"
<?php
$activeMenuItem = JSite::getMenu()->getActive();
$Itemid = $activeMenuItem->id;
if(empty($Itemid)){
$Itemid = JFactory::getApplication()->input->get('Itemid');
}
?>
<input type="hidden" name="Itemid" value="<?php echo $Itemid; ?>" >