Hi @saguaros
I've worked out what the problem with the ja_k2filter template override is... basically it's missing the code at the top of category.php page which displays the blank page content.
The correct code is found in the default component file which is in:
/components/com_jak2filter/views/itemlist/tmpl/category.php
and is:
<?php
if ((!empty($this->blank_page) && empty($this->issearch)) || (!empty($this->blank_page) && !empty($this->blanktxt_after_search)))
echo nl2br($this->blank_txt);
if (empty($this->blank_page) || !empty($this->issearch)) {
?>
plus the closing tag at the end of the file before the closing div tag:
<?php
}
?>
Once I added this to the category.php file in the template override, the Blank Page content displayed as expected.
Would be great if the Dev team could add this to the package available for download to prevent other people from wondering why it doesn't display.
Thanks
Nathan