@MeroWish
Go to file:
/oc-content/themes/zara/header.php
Find code:
if(
(!osc_is_home_page() || $cat_home == 1)
&& (!osc_is_ad_page() || $cat_item == 1)
&& ((!osc_is_register_page() && !osc_is_contact_page()) || $cat_reg == 1)
&& ((!osc_is_publish_page() && !osc_is_edit_page()) || $cat_pub == 1)
&& (osc_get_osclass_location() <> 'user' || $cat_user == 1)
) {
osc_current_web_theme_path('inc.category.php');
}
Replace it with:
if(
(!osc_is_home_page() || $cat_home == 1)
&& (!osc_is_ad_page())
&& ((!osc_is_register_page() && !osc_is_contact_page()) || $cat_reg == 1)
&& ((!osc_is_publish_page() && !osc_is_edit_page()) || $cat_pub == 1)
&& (osc_get_osclass_location() <> 'user' || $cat_user == 1)
) {
osc_current_web_theme_path('inc.category.php');
}