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.

Add multiple products to the basket at a time

Læsetid: ca. 1-2 minutter

If you want the ability to add multiple products to the basket in one go, you can do so by adding an extra level to your regular form called add_to_basket, and let it be an array containing what you would normally POST for individual products.

You can use this very simple example from a landing page:

<form action="" method="post">
<{section name="i" loop=$products}>
<h3><{$products[i]->getName()|escape}><h3>

<{assign var="index" value=$smarty.section.i.index}>
<input type="hidden" name="add_to_basket[<{$index}>][product_id]" value="<{$products[i]->getProductId()}>"/>
<input type='hidden' name="add_to_basket[<{$index}>][amount]" value="1"/>
<{/section}>

<input type="submit" value="Add all to cart">
</form>

The important thing in the above is that add_to_basket[] has a unique id for each product. In the example, the index from the section that loops the products through is used.