@Fil
In file:
oc-content/themes/veronika/search.php
You have code:
<?php $old_show = Params::getParam('sShowAs') == '' ? $def_view : Params::getParam('sShowAs'); ?>
Try to change it i.e. to:
<?php
if(Params::getParam('sShowAs') == '') {
if(in_array($search_cat_id, array(7,8,9))) {
$old_show = 'list';
} else {
$old_show = $def_view;
}
} else {
$old_show = Params::getParam('sShowAs');
}
?>