Manufacturers became a legal requirement for certain products in 2025. Here you can read how to create manufacturers.
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.
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".
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.
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}>