Quote Originally Posted by honeypot View Post
I think I have found away of removing the read-only attribute intefering with the GMCF. Around line 288 in googlefroogle.php you need to delete

$attributes = $db->Execute("SELECT products_attributes_id FROM " . TABLE_PRODUCTS_ATTRIBUTES . " WHERE attributes_display_only = 1 AND products_id = " . $products->fields['products_id'] . " ORDER BY products_attributes_id ASC;");

By removing this it does not seem to intefere with the rest of the feed and now I do not need to have two colour attributes I can use the one for the customer as the same for my product feed.
I have tried removing this to solve my problem I am having but have had no luck. I even tried changing this part WHERE attributes_display_only = 1 to WHERE attributes_display_only = 0 but nothing changes in my feed.

Currently my feed picks up the size attribute but only adds 1 size when in fact there are quite a few sizes for each product.
So therefore if I search google for my product with out the size that is inserted in the feed I cannot find it but if I search google for my product with the size that is listed in the feed I can find it just fine.

I have thousands of products all with lots and lots of attributes. There has to be an easier way to get the feed to pick up all the sizes, colors, etc that are defined in the database.

Any clues?