Just thought I'd share an easy peasy way of doing this for anyone wanting to know. Really easy with a stylesheet.
If you want to burn a feed though feedburner and display it as a sidebox. Burn your feed, then copy and paste the code into the tpl_ezpages.php sidebox template so you end up with something like this:
<?php
/**
* Side Box Template
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0
* @version $Id: tpl_ezpages.php 2982 2006-02-07 07:56:41Z birdbrain $
*/
$content = "";
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
$content .= "\n" . '<ul style="margin: 0; padding: 0; list-style-type: none; display:none;">' . "\n";
for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {
$content .= '<li><a href="' . $var_linksList[$i]['link'] . '">' . $var_linksList[$i]['name'] . '</a></li>' . "\n" ;
} // end FOR loop
$content .= '</ul>' . "\n";
$content .= '<div id="feedburner"><script src="http://feeds.feedburner.com/YOURFEED?format=sigpro" type="text/javascript" ></script><noscript><p>Subscribe to RSS headline updates from: <a href="http://feeds.feedburner.com/YOURFEED"></a><br/>Powered by FeedBurner</p> </noscript></div></div>';
?>
Switch on the side box and at this stage the feed will appear on every page which for some sites might be ok. However I only wanted the feed displayed on the homepage which poses a small problem in getting the ezpages sidebox to switch off on other pages.
Solution:
I've wrapped the feedburner feed with <div id="feedburner">
The zen cart homepage and zen cart pages beneath have different body ID's so this means I'm able to use my stylesheet to turn the ezpages sidebox off on all pages beneath the homepage.
Very easy to do, this all you would need to add to your stylesheet
#indexBody #feedburner {
display:none;
}
#productinfoBody #feedburner {
display:none;
}
#shoppingcartBody #feedburner {
display:none;
}
#loginBody #feedburner {
display:none;
}
#checkoutshippingBody #feedburner {
display:none;
}
#checkoutpaymentBody #feedburner {
display:none;
}
#checkoutconfirmationBody #feedburner {
display:none;
}
Hope someone finds this useful.