Showing condition description in listing

Hello,

I am creating a template where I pull item attributes from the listing specifics (as per “Creating Your Own Listing Designs” in the user manual). I would like to have the template pull information from the condition details (i.e., seller notes") as well. Is it possible to do this?

Best,
Matt

This should do the trick:

[[item.conditionDescription]]

Ilja,

Thank you! This worked perfectly.

Is it possible to autogenerate a title based on item specifics?

Best,
Matt

Sorry, you can influence the listing description from a design, not other aspects of a listing.

If you want to modify the title, maybe you should take a look at the bundled AppleScript examples (in the Help menu).

Here is an example script that looks for an item specific called “Material”, and changes the selected listing name to include its value

tell application "GarageSale"
repeat with theListing in (get selected ebay listings)
	repeat with specific in item specifics of theListing
		if the specific name of specific is "Material" then
			set materialName to item 1 of (get values of specific)
			set listingName to "my listing title " & materialName
			set the title of theListing to listingName
		end if
	end repeat
end repeat
end tell

Ilja,

Thank you. I will take a look at the code and see what I can do.

The autogeneration of listing content based on item specifics is a huge time saver by itself. As a workaround, I was considering just creating a draft title in the body of the listing and then copying and pasting it into the title section.

Best,
Matt

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.