After re-installing and re doing the whole template, the same issue showed up again even though I did not install any mods yet.
I found out what the issue is, in another post about a different topic it shows that you can display sideBoxes on just the home page if you want by adding this code:
PHP Code:
if ($this_is_home_page) {
$show_gallery = true;
} else {
$show_gallery = false
};
This code works perfectly, except that when not on the home page the next sideBox under this one will get duplicated because the if statement in the above code does not do anything if it is not on the home page. I do not know why the system needs the added code but it works fine now for me.
Code that I use now that seems to fix the duplication problem.
PHP Code:
if ($this_is_home_page) {
$show_gallery = true;
} else {
$show_gallery = false;
$content='';
};