Quote Originally Posted by swamyg1 View Post
Hi Guys,

Can anybody help, I'm trying to display this sidebox on only my index page... I've added the following to my testimonials_manager.php but it doesn't have an effect:

$show_testimonials_manager = false;
if ($_GET['main_page'] == 'index') {
$show_testimonials_manager = true;
} else {
$show_testimonials_manager = false;
}
Try it with the highlighted change.

$show_testimonials_manager = false;
if ($this_is_home_page) {
$show_testimonials_manager = true;
} else {
$show_testimonials_manager = false;
}

Don't forget that you'll need to add the following to surround the the main section of code:

if ($show_testimonials_manager == true) {

main portion of code

}