Book a call

Fill out the form and we will call you back as soon as possible

Emergency situation

In case of emergencies or breakdowns, you can send an SMS to our emergency hotline

On-call phone (SMS only)

+45 29 70 15 95

Send an SMS with the following information:

  • Your name and webshop
  • Description of the problem
  • Your callback phone number

Notes: This service is only for critical situations where your webshop is down or has serious problems. For regular support, please use our normal support channels.

How to create manufacturers

Manufacturers became a legal requirement for certain products in 2025. Here you can read how to create manufacturers.

Læsetid: ca. 1-2 minutter

Note: In order for manufacturers to be displayed in your online shop, code must be added with the information. The code is available at the bottom of the page and your developer can easily paste it in.

Creating a manufacturer

This is how you create a manufacturer:

Click on "Products"

Click on "Manufacturers"

Click on the "Create new manufacturer" button

Enter the manufacturer's name

Click "Create manufacturer"

You can then enter the manufacturer's address, email and URL.

If the manufacturer is based outside the EU, you must enter additional information. To do this, click the button next to "Manufacturer is outside the EU". The new information will appear.

Then click "Save".

Assign the manufacturer to products

Your products should now have the manufacturer associated to them. You can either do this when you create the product or by editing the product. Your manufacturers are listed in a dropdown where you find brands and suppliers.

Code to show the manufacturer

Below you will find the code to show the manufacturer of the product. You will need to have your developer add it to your theme.

<{assign var="manufacturer" value=$product->getManufacturer()}>>
<{if $manufacturer}>>
<p><{$manufacturer->getName()|escape}></p>
<p><{$manufacturer->getAddress()|escape}></p>
<p><{$manufacturer->getEmail()|escape}></p>
<{if $manufacturer->getWebsite()}>>
<p><a href="<{$manufacturer->getWebsite()}>">Home page</a></p>
<{/if}>
<{if $manufacturer->getIsOutsideEu()}>>
<p>Manufacturer information inside the EU</p>
<p><{$manufacturer->getEuName()|escape}></p>
<p><{$manufacturer->getEuAddress()|escape}></p>
<p><{$manufacturer->getEuEmail()|escape}></p>
<{/if}>

<{/if}>