Would you like to automatically add a stylish template to your existing ebay offers? Not that easy. Normally. In this article I will show you how you can easily convert your existing item descriptions into a fancy template with dewabit.

Excursus: How does a dewabit template work?

A template, as you use it in dewabit, consists of a dynamic and a static part. The dynamic part is different from offer to offer and contains your actual item description. The static part, on the other hand, is the same for each offer. Usually it is a header and footer. In the header, for example, you would place your logo, in the footer you will find information about the purchase process and shipping.

If you use the dewabit template engine, the dynamic parts of the descriptions are displayed as editable input fields:

Note: All following screenshots are taken from the german version of dewabit. dewabit is also available in english, of course.
dewabit Template Engine

Our goal now is to extract your item description from your listings and insert it into a template. More precisely: to provide a template engine variable, which will then be used in the new template. Let's go!

Where can I get a template?

We already provide you with 20 free description templates, which are available directly in dewabit.

You can get an overview about our free templates by clicking on "Templates".

In addition, we cooperate with BullMedia, a professional designer of templates. In the dewabit member area you have the possibility to purchase additional templates especially adapted for dewabit.

Convert my descriptions

Scenario 1: You have not yet used an description template.

If you have not used an template before, then your descriptions probably look like this:

A simple description of an item

In this case we can take your entire item description and do not have to extract it. So what to do?

Step 1:
You select the items you want to revise, right click and select "Edit bundled".

Step 2:
A new window opens. Switch to the tab "Description".

The window where you can bulk revise your descriptions

Set the config as on the picture and choose one of our free templates. In this case we have chosen "Materia". As XPath selector we enter //* to extract the whole description. In scenario 2 I'll go into the XPath selector in more detail.

Then we click on "Check Changes" and confirm the new window. When we look at the result, it looks like this:

It worked! All item descriptions were converted into a fancy template that includes buttons for buy now, watch and ask questions in addition to the item price (which updates automatically when changes are made in dewabit). In addition, the item images were transferred into the template.

If you have not yet used a template, then you are already done. You can bundle all your articles with the new template and load the changes into the queue. 🥳
But what if you already use a different template and want to switch to our template engine?

Scenario 2: You want to change an existing template

Foreword: For scenario 2 you need a rough knowledge of HTML. Do you have difficulties understanding the steps? Send me your item id by mail to support[at]dewabit.com, I will be happy to help you convert your descriptions.

Implementing scenario 1 was easy. But what if you are already using a description template?

The old description that we want to replace

In this case we are only interested in the description of the article. The links, legal information, etc. should not be included. So it would not work like in scenario 1. So we have to extract the actual description. To do this we look at the item with Chrome or Firefox and press the F12 key to analyze the source code. That looks like this:

Analyzing the description source code with Firefox

We see that the description is contained in an HTML element with the class "borders". All right, so we have all the information we need 😎

Tip: In addition to a class, the description is often assigned to a unique ID. In this case, "class" should be replaced with "id" in the selector below.

Now that we have the class, we can define the XPath selector:

//div[@class="borders"]

We mark again the items we want to revise and revise them in bulk. We switch again to the tab "Description" and fill it out as follows:

The items being revised with the XPath Selector

After the changes have been adopted, our offer looks as follows:

The new template with the old description

Conclusion


The bulk revise of item templates is very easy in dewabit. Especially if you have not used a template yet. If you do, it can be a bit tricky to find the corresponding XPath selector, but I am always at your side with advice and action via a free ticket in our member area.