This assumes you are using Andrew's RSS Feed mod,
i.e.
Version: v 2.0.7 27.10.2007 17:52
Last Updated: Oct 27 2007
Author: Andrew Berezin
as at
http://www.zen-cart.com/forum/showthread.php?t=76041
BACKUP this file quoted below first !!!!!
/includes/templates/nameofyourtemplate/templates/tpl_product_info_display.php
Find
Code:
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
<br class="clearBoth" />
Replace with
Code:
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<div id="RSSFeedLink"><?php echo rss_feed_link(RSS_ICON); ?></div>
<!--eof Product description -->
<br class="clearBoth" />
Added code highlighted in RED