I'm trying to add images to a right hand column. I've created the php files in this tutorial: http://www.zen-cart.com/wiki/index.php/Tutorial
So I've created the new_sidebox.php , new_sidebox_defines.php and the tpl_new_sidebox.php the sidebox info shows up in the layout boxes controller. The problem is no images appear on my site as expected . The code for the last one is:
<?php
$content = <<< End_Of_Quote
<a href="http://www.mysite.com/" target="blank">...</a>
<img src="/images/side_banner1.jpg" width="170" height="255" border="0">
End_Of_Quote;
?>
What am I doing wrong here?
Bookmarks