Hi,
The filters are not displayed with a foreach on that view file.
They are displayed like that:
while($count<$this->maxFilter+1){
$height='';
if(!empty($filters[$count]->filter_height)){
$height='height:'.$filters[$count]->filter_height.'px;';
}else if(!empty($this->heightConfig)){
$height='height:'.$this->heightConfig.'px;';
}
if(!empty($html[$count])){
?>
<div class="hikashop_filter_main hikashop_filter_main_<?php echo $filters[$count]->filter_namekey; ?>" style="<?php echo $height; ?> float:left; width:<?php echo $widthPercent*$filters[$count]->filter_options['column_width']?>%;" >
<?php //echo $this->filterClass->displayFilter($this->filters[$count], $this->params->get('main_div_name'), $this);
echo '<div class="hikashop_filter_'.$filters[$count]->filter_namekey.'">'.$html[$count].'</div>';
?>
</div>
<?php
}
$count++;
}
So all the filters are stored in the $html array.
If you want to display a specific filter only you can do like that:
foreach($html as $h){
if(strpos($h,'AltureElevacion')) echo $h;
}