Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Условие то понятноСделай условие по $category->category_id;
А еще можно снимать публикацию ненужных категорий в админке..
<?php defined('_JEXEC') or die(); ?>
<?php if ($this->params->get('show_page_heading') && $this->params->get('page_heading')) {?>
<div class="jshop<?php print $this->params->get('pageclass_sfx');?> jshophead">
<h1><?php print $this->params->get('page_heading')?></h1></div>
<?php }?>
<div class="jshop_list_category">
<?php if (count($this->categories)){?>
<div class="jshop">
<?php foreach($this->categories as $k=>$category){
if ($category->category_id!=1) { ?>
<?php if ($k%$this->count_category_to_row==0) echo '<div class="clear"></div><ul class="str_category">'; ?>
<li class = "jshop_categ width<?php echo round(100/$this->count_category_to_row, 0)?>">
<div class="category">
<div class="image">
<a href = "<?php echo $category->category_link;?>"><img class = "jshop_img" src = "<?php echo $this->image_category_path;?>/<?php if ($category->category_image) echo $category->category_image; else echo $this->noimage;?>" alt="<?php echo htmlspecialchars($category->name);?>" title="<?php echo htmlspecialchars($category->name);?>" /></a>
</div>
<a class = "product_link" href = "<?php print $category->category_link?>"><?php print $category->name?></a>
</div>
</li>
<?php if ($k%$this->count_category_to_row==$this->count_category_to_row-1) echo '</ul>'; ?>
<?php } }?>
<?php if ($k%$this->count_category_to_row!=$this->count_category_to_row-1) echo '</ul>'; ?>
</div>
<?php } ?>
</div>
<div class="clear"></div>
<div class="maincat_desc">
<?php echo $this->category->description?>
</div>