Hi I have tried to follow the import on the manual for xml or csv and the headings are not matching could someone post the correct header line with all the headings needed ? would really appreciate it.
Les
Here is an example XML file from the GarageSale Manual wiki (https://wiki.iwascoding.com/mediawiki/index.php?title=XML_Import_Format):
<?xml version="1.0"?>
<items>
<item>
<title>My Listing Title</title>
<description>
<![CDATA[ My <b> great </b> stuff. ]]>
</description>
<startingBid>2.99</startingBid>
<imageURL isGalleryImage="true">
http://www.iwascoding.com/GarageSale/ListingDesigns/images/Packs/Pack24/Spooky.jpg</imageURL>
<imageURL>
http://www.iwascoding.com/GarageSale/ListingDesigns/images/Packs/Pack24/VintageCollage.jpg</imageURL>
<domesticShippingService serviceFee="12.00"
serviceAdditionalFee="2.00">UPS
Ground</domesticShippingService>
<internationalShippingService serviceFee="22.00">UPS Worldwide
Express</internationalShippingService>
<siteName>eBay USA</siteName>
<design>Be A Star</design>
<layout>thumb gallery</layout>
<category>155193</category>
<!--Unisex T-Shirts-->
<condition>New with tags</condition>
<variation>
<attributeName>Size</attributeName>
<attributeValue>L</attributeValue>
<attributeName>Color</attributeName>
<attributeValue>Blue</attributeValue>
<price>10.00</price>
<sku>LARGE-BLUE</sku>
<quantity>10</quantity>
</variation>
<variation>
<attributeName>Size</attributeName>
<attributeValue>M</attributeValue>
<attributeName>Color</attributeName>
<attributeValue>Blue</attributeValue>
<price>10.00</price>
<sku>MEDIUM-BLUE</sku>
<quantity>10</quantity>
</variation>
<variation>
<attributeName>Size</attributeName>
<attributeValue>S</attributeValue>
<attributeName>Color</attributeName>
<attributeValue>Blue</attributeValue>
<price>10.00</price>
<sku>SMALL-BLUE</sku>
<quantity>10</quantity>
</variation>
<variation>
<attributeName>Size</attributeName>
<attributeValue>L</attributeValue>
<attributeName>Color</attributeName>
<attributeValue>Red</attributeValue>
<price>10.00</price>
<sku>LARGE-RED</sku>
<quantity>10</quantity>
</variation>
<variation>
<attributeName>Size</attributeName>
<attributeValue>M</attributeValue>
<attributeName>Color</attributeName>
<attributeValue>Red</attributeValue>
<price>10.00</price>
<sku>Medium-RED</sku>
<quantity>10</quantity>
</variation>
<variation>
<attributeName>Size</attributeName>
<attributeValue>S</attributeValue>
<attributeName>Color</attributeName>
<attributeValue>Red</attributeValue>
<price>10.00</price>
<sku>Small-RED</sku>
<quantity>10</quantity>
</variation>
<designProperty>
<propertyName>Title and Subtitle Font</propertyName>
<propertyValue>Arial</propertyValue>
</designProperty>
<designProperty>
<propertyName>Custom Title:</propertyName>
<propertyValue>This my super hot stuff!</propertyValue>
</designProperty>
<handlingTime>2</handlingTime>
</item>
</items>
HI
Just found this topic - was wondering if you could help
I am looking to use this template for import of multiple different items at once and have only seen an example of single import format. When I nest the next item should it be as the below?:
<?xml version="1.0"?> "data" <item>
"data"
</item>
Thanks
Sean
Yes, basically the file should look like this:
<?xml version="1.0"?>
<items>
<item>
...data of first item...
</item>
<item>
...data of second item...
</item>
<item>
...you get the idea...
</item>
</items>
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.