*

MeroWish.com

  • ***
  • 78 posts
I Want to hide the Category section on the Item page
« on: October 29, 2017, 08:39:50 AM »
Hi,
I Want to hide the Category section on the Item page, so it could shows on homepage only.

for eg. https://merowish.com/mobile-tab/mobile-phones/oppo-f1s_i484 this link shows the current view of item page with category section display but i want to hide this category thing for the item page and could display only on homepage.

MeroWish.com

*

MB Themes

Re: I Want to hide the Category section on the Item page
« Reply #1 on: October 29, 2017, 09:06:14 AM »
@MeroWish
Go to file:
/oc-content/themes/zara/header.php

Find code:
Code: [Select]
  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:
Code: [Select]
  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');
  }
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots