Recently google started limiting number of characters for product descriptions:
http://www.google.com/support/forum/...3b147064&hl=en
I started getting these messages few weeks ago about some of my products and they were not getting listed:
"Error: Offer too big - Error
Your feed contains offers which are too big. These offers will be dropped."
I searched the forums and could not find a solution, so tried digging into it myself. I'm not sure what google's limit is, but I trimmed the description to 500 characters and it seemed to have worked. Here's what I did:
file googlefroogle.php (in the root directory):
added code to line #191 (version 1.8.2):
new code:
PHP Code:
if (strlen($products_description) > 500 ) {
$products_description = substr($products_description, 0, 500);
}
$products_description = $google_base->google_base_xml_sanitizer($products_description, true);
old code:
PHP Code:
$products_description = $google_base->google_base_xml_sanitizer($products_description, true);
Bookmarks