The best solution would be to have imagecache or whatever image module you use take care of its own notices, you can achieve this easily, there is no reason to write in the product description 'click here to enlarge image', I like to program in an object oriented orderly and clean way, and this message in the prod.description smacks of amateurishm., I assume it is part of the theme you use.
Anyway, the solution to your problem is easy, replace line 420:
$pad = strip_tags($product->body); $pad = check_plain($pad); if (strlen($pad) >10000){$pad = substr($pad,0,10000); }
to:
$pad = strip_tags($product->body); $pad = str_replace("Click Image To Enlarge", " ", $pad); $pad = check_plain($pad); if (strlen($pad) >10000){$pad = substr($pad,0,10000); }
The new version of store RSS Feed And Sitemap is radically different it outputs various rss feeds , including pricegrabber and amazon csv feeds, it posts sitemap to various engines, and loads more....
It has put my website top of google listings for the products i sell and the geographical area.
I probably will publish it in the summer.
