Skip to main content
All CollectionsMarketplace Integration eBay
Creating and Updating a HTML template for your eBay listings
Creating and Updating a HTML template for your eBay listings
S
Written by Selro Support
Updated over a week ago

You can easily create your own HTML listing template for your eBay items with Selro. Please follow the below guideline to create your HTML eBay listing template.

You can include the following tags in your eBay listing template. When listing your eBay items using this listing template, your product data will be automatically inserted into the html text before sending it to eBay.

${title!}

This is the listing title

${description!}

This is the listing description

${product_summary1!} to ${product_summary5!}

This is product summary or Amazon bullet points.

You can have up to 5 product summary e.g ${product_summary2!}

${product_summary3!}

${image1!} to ${image15!}

Product images up to 15 images. This tag give the image url. Hence you would still need to include the html tags for img element.

<img src="${image1!}"/>

${rrp_price!}

Recommended Retail Price

${sku!]

SKU

${qty!}

Listing Qty

${price!}

Selling Price

${currency!}

Listing Currency

${mpn!}

Manufacturer Part Number

${model!}

Model Number

${upc!}

UPC Barcode

${ean!}

EAN Barcode

${condition_note!}

Item Condition Note

${brand!}

Brand

${manufacture}

Manufacture

${condition!}

Condition


If you want to check whether the tag value is empty or not, please use the following.

<#if product_summary1??>
<p>${product_summary1!}</p>
</#if>

Selro tags use Freemarker template syntax and you could use complex syntax using the freemarker template guide at https://freemarker.apache.org/docs/index.html

You can also use tags for product attributes/eBay item specifics. Just include the attribute name/item specific name (in lower case with under score for spaces ) and the value will be included in the html description.

${item_specific_name!}

e.g If you have an item specific name called 'Designer Type', tag should be ${designer_type!}



Sample HTML Text to Start with is displayed below.

<html>

<body>

<h1>${title!}</h1>

<div>${description!}</div>

<img src="${image1!}"/>
<img src="${image2!}"/>
<img src="${image3!}"/>
<img src="${image4!}"/>

<h1>Return Policy</h1>

</body>

</html>

Once the eBay html template is completed, you can upload the html template for your listing profile. For that please go to 'username -> connections -> edit eBay -> listing profiles and click 'Upload HTML Design'

This will upload the html design for all the listing profiles. If you have different HTML design for each listing profile, you can upload the html file from the listing profile section.

Screenshot_2021-04-21_at_15.26.03.png

Once the html file is uploaded, you can then send the updated description to eBay by clicking 'Update Only Descriptions', pictured below, under the listing profile.

Screenshot_2021-04-21_at_15.28.22.png
Did this answer your question?