Hello,
Please open templates/sj_appstore_hitech/html/com_virtuemart/category/slideshow-cat.php file, find this code:
foreach($this->category->children as $categoryID){
$category_filter .= ",'".$categoryID->virtuemart_category_id."'";
$query = "SELECT c.category_child_id as cat_child
FROM #__virtuemart_category_categories as c
WHERE c.category_parent_id='".$categoryID->virtuemart_category_id."'
";
$db->setQuery($query);
$id = $db->loadObjectList();
if($id){
foreach($id as $id){
$category_filter .= ",'".$id->cat_child."'";
}
}
}
and change to:
if (sizeof($this->category->children) > 0) {
foreach($this->category->children as $categoryID){
$category_filter .= ",'".$categoryID->virtuemart_category_id."'";
$query = "SELECT c.category_child_id as cat_child
FROM #__virtuemart_category_categories as c
WHERE c.category_parent_id='".$categoryID->virtuemart_category_id."'
";
$db->setQuery($query);
$id = $db->loadObjectList();
if($id){
foreach($id as $id){
$category_filter .= ",'".$id->cat_child."'";
}
}
}
}
Thanks