@pietkei
Go to inc.category.php of theme and find this code:
<div class="line" style="width:<?php echo osc_count_categories()*($width + 4) - 2 - 2; ?>px;">
<?php osc_goto_first_category(); ?>
<?php while(osc_has_categories()) { ?>
<?php
$search_params['sCategory'] = osc_category_id();
$color = gam_get_cat_color(osc_category_id());
?>
and bellow line with $color add following:
if(osc_category_id() == 5) {
continue;
}
Whole code will be :
<div class="line" style="width:<?php echo osc_count_categories()*($width + 4) - 2 - 2; ?>px;">
<?php osc_goto_first_category(); ?>
<?php while(osc_has_categories()) { ?>
<?php
$search_params['sCategory'] = osc_category_id();
$color = gam_get_cat_color(osc_category_id());
if(osc_category_id() == 5) {
continue;
}
?>
Number 5 should be replaced with ID of your category.