edit /includes/modules/sideboxes/YOURTEMPLATE/best_sellers.php
in this code block:```
// test if box should display
$show_best_sellers= false;
if (isset($_GET['products_id'])) {
if (isset($_SESSION['customer_id'])) {
$check_query = "select count(*) as count
from " . TABLE_CUSTOMERS_INFO . "
where customers_info_id = '" . (int)$_SESSION['customer_id'] . "'
and global_product_notifications = '1'";
$check = $db->Execute($check_query);
if ($check->fields['count'] > 0) {
$show_best_sellers= true;
}
}
} else {
$show_best_sellers= true;
}
if ($show_best_sellers == true) {
add the following:
if ($this_is_home_page == false) $show_best_sellers = false;
like this:
// test if box should display
$show_best_sellers= false;
if (isset($_GET['products_id'])) {
if (isset($_SESSION['customer_id'])) {
$check_query = "select count(*) as count
from " . TABLE_CUSTOMERS_INFO . "
where customers_info_id = '" . (int)$_SESSION['customer_id'] . "'
and global_product_notifications = '1'";
$check = $db->Execute($check_query);
if ($check->fields['count'] > 0) {
$show_best_sellers= true;
}
}
} else {
$show_best_sellers= true;
}
[B] if ($this_is_home_page == false) $show_best_sellers = false;
[/B]
if ($show_best_sellers == true) {