Google Feed - CSV not picking up attributes


https://forum.kartris.com/Topic3550.aspx
Print Topic | Close Window

By TheCalicoTree - Wed 7 Jan 2015
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