Update this line:
<?php if(bet_param('premium_home') == 1 && osc_count_premiums() > 0) { ?>
into following:
<?php if(bet_param('premium_home') == 1 && osc_count_premiums() > 0 && !in_array($search_cat_id, array(1,2,3,4,5))) { ?>
Note that $search_cat_id should be defined before (and probably is in standard theme code).
array(1,2,3,4,5) specifies categories where premium block is hidden.