In file:
oc-content/themes/veronika/js/global.js
Find line:
var sidebarReload = false;
replace with:
var sidebarReload = true;
Then in file:
oc-content/themes/veronika/search.php
Find code:
<div class="row">
<h4><?php _e('Transaction', 'veronika') ; ?></h4>
<div class="input-box">
<?php echo veronika_simple_transaction(); ?>
</div>
</div>
<div class="row">
<h4><?php _e('Condition', 'veronika') ; ?></h4>
<div class="input-box">
<?php echo veronika_simple_condition(); ?>
</div>
</div>
Replace with:
<?php if(@!in_array($search_cat_id, $exclude_tr_con)) { ?>
<div class="row">
<h4><?php _e('Transaction', 'veronika') ; ?></h4>
<div class="input-box">
<?php echo veronika_simple_transaction(); ?>
</div>
</div>
<div class="row">
<h4><?php _e('Condition', 'veronika') ; ?></h4>
<div class="input-box">
<?php echo veronika_simple_condition(); ?>
</div>
</div>
<?php } ?>
Then find:
$search_cat_id = isset($search_cat_id[0]) ? $search_cat_id[0] : '';
and bellow this line put:
$exclude_tr_con = explode(',', osc_get_preference('post_extra_exclude', 'veronika_theme'));