Tried this:
And I tried this:Code:if (SHOW_COUNTS == 'true' and ($this_is_home_page)) { $products_in_category = zen_count_products_in_category($counter); if ($products_in_category > 0) { $this->box_categories_array[$ii]['count'] = $products_in_category; } else { $this->box_categories_array[$ii]['count'] = 0; } }
Tried this:
I also tried and $this_is_home_page == falseCode:if (SHOW_COUNTS == 'true' and $this_is_home_page !=true) { $products_in_category = zen_count_products_in_category($counter); if ($products_in_category > 0) { $this->box_categories_array[$ii]['count'] = $products_in_category; } else { $this->box_categories_array[$ii]['count'] = 0; } }
But nothing seems to work right. I'm not sure whether I need to compare "$this_is_home_page" to some global variable/ or what...



