Skip to content
  • There are no suggestions because the search field is empty.

Omnivore eBay Product Template

Edit your eBay product listing template fields

About & Important Information

When your store was first set up, it was given a default product listing template. This template produces the HTML description visible in the bottom half of the product listing page on eBay, and is set up as follows:


  1. Go to Settings - eBay Australia - Product Template
  2. View the HTML template in the "Product listing template" box
  3. Before you start to edit this section, it is a good idea to make a copy of the template. You can paste it into a Notepad document.
  4. If you are comfortable with HTML, you may edit and replace this code with your own custom version. However, to ensure the product details appear, you need to add several fields to the template. 
  5. For example, to show the product title, you would insert ${product_name}. 
  6. The default template has a number of these fields already in place for you to use as examples.
  7. The full set of available fields is here:

 

Field Details Our code To be inserted
Product SKU sku  ${sku}
Product title which has to be less than or equal to 80 characters long product_name ${product_name}
Brand of your product brand  ${brand}
The selling price of the product as it will appear on the marketplace price ${price}
The recommended retail price rrp ${rrp}
The short description of the product short_description ${short_description}
The full large description of the product detailed_description ${detailed_description}
The weight of the product weight ${weight}
The products manufacturing part number (MPN) model ${model}
The main product image, used as the thumbnail in the search result hero_image ${hero_image}
The comma separated listing of product images. images ${images}
Image 1, 2, 3 ... 12 of the product. image1 to image12 ${image1}
The logo as set on Settings - eBay Australia - Product Template Page logo_url ${logo_url}
Shipping info as set on Settings - eBay Australia - Product Template Page shipping_guide   ${shipping_guide}
Returns info as set on Settings - eBay Australia - Product Template Page returns_info ${returns_info}
Sizing guide as set on Settings - eBay Australia - Product Template Page sizing_guide ${sizing_guide}
Payment info as set on Settings - eBay Australia - Product Template Page   payment_info ${sizing_guide}
About us as set on Settings - eBay Australia - Product Template Page about_us ${about_us}

Example Product Lasting Template Guide

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <meta name="viewport" content="width=device-width" />
 <head>
   <title>Official eBay Store</title>
 </head>
 <body>
   <div class="wrapper">
     <div class="header">
       <div class="header-container">
         <div class="logo">
           <img src="${logo_url}" />
         </div>
       </div>
     </div>
     <div class="listing-content">
       <div class="gallery">
         <img src="${hero_image}" />
         <span id="alt1">${image1}</span>
         <span id="alt2">${image2}</span>
         <span id="alt3">${image3}</span>
         <div class="right-section">
           <h1>${product_name}</h1>
           <div class="details">${detailed_description}</div>
         </div>
         <div class="tabs">
           <ul id="menu-list">
             <li id="tab1"><a>SHIPPING</a></li>
             <li id="tab2"><a>RETURNS</a></li>
             <li id="tab3"><a>CONTACT US</a></li>
             <li id="tab4"><a>PAYMENT</a></li>
           </ul>
           <div class="paragraph" id="event1">${shipping_guide}</div>
           <div class="paragraph" id="event2">${returns_info}</div>
           <div class="paragraph" id="event3">${about_us}</div>
           <div class="paragraph" id="event4">${payment_info}</div>
         </div>
         <div class="about-section">
           <h2>ABOUT OUR COMPANY</h2>
           <p>${about_us}</p>
         </div>
       </div>
     </div>
   </div>
 </body>
</html>