I hacked out a way to get it to work, but I am not sure if it is the right way. I am not a php guru by any means, not even a novice. I will share what I did using the SIDEBOX ANYWHERE mod...

Basically, I first created a .php page that calls the mod (in the code below its the one named ezpage_sidebox_include.php). Then on another page, the one that I want the multiply side boxes to show, I use a basic php include statement to call the first page I created and then the additional sideboxs straight from the modules folder. It looks like so...

<div> <?php include("../zencart/ezpage_sidebox_include.php"); ?>
</div>
<div>
<?php include("../zencart/includes/modules/sideboxes/categories.php"); ?>
</div>
<div>
<?php include("../zencart/includes/modules/sideboxes/search.php"); ?>
</div>

What I found was the CSS used for all of the includes came from the SIDEBOX ANYWHERE mod page. Which is okay for me since I use a custom CSS template that I created to override the look, but it will probably not be good others.

Could someone with coding experience please tell me if this is "good form." Are there problems a newbie like me is not aware of that are created by doing this? Is this a fluke that it works?

thanks!