Hi guys how to change this code: See image 1
(sidebar-search.php)
<?php if ( osc_count_categories() ) { ?>
<?php
if(isset($sCategory)) {
$category = array("pk_i_id" => $sCategory);
} else {
if(osc_is_home_page() && osc_is_search_page()){
$category = 'null';
} else {$category = array("pk_i_id" => '0');}
}
osc_categories_select('sCategory', $category , __('Select a category', 'ctg_housing')) ; ?>
To receive this kind from style: See image 2
(item-post.php)
<?php ItemForm::category_select(null, null, __ ('Select a property type', 'ctg_housing')); ?>
Thanks