Google Feed - CSV not picking up attributes

Posted By TheCalicoTree Wed 7 Jan 2015
Add to Favorites0
Author Message
TheCalicoTree
 Posted Wed 7 Jan 2015
Supreme Being

Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)Supreme Being - (62,992 reputation)

Group: Forum Members
Last Active: Thu 18 Jun 2015
Posts: 98, Visits: 1,382
I have added many product attributes to our system to conform to the rules of Google Merchant. These were added to the XML file but when I run the CSV feed they are not added.

The code below is only performed on the XML file. It needs to be added to the generation of the CSV file to create new columns for each attribute.

 For Each drwGoogle As DataRow In dtGoogleAttributes.Rows          If FixNullFromDB(drwGoogle("ATTRIBV_Value")) IsNot Nothing Then             .WriteWhitespace("   ")             .WriteElementString(FixNullFromDB(drwGoogle("ATTRIB_Name")), FixNullFromDB(drwGoogle("ATTRIBV_Value")))             .WriteWhitespace(vbCrLf)          End IfNext

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top