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.

Implement Pricerunner tracking

Guide to implementing Pricerunner conversion tracking on your Shoporama online shop with proper Smarty code.

Reading time: approx. 1-2 minutes
Developer

To track your sales in Pricerunner, you need to implement a conversion pixel on your order confirmation page. Here's a guide to do it on Shoporama.

The code

Paste the following code on your /thanks page(or in your order tracking code if you have it separate). Replace [MERCHANTID] with your Pricerunner Merchant ID:

<{if $order && !$order->getTrackingCalled()}> <img width="1" height="1" style="display:none" src="https://www.pricerunner.dk/track/pixel/[MERCHANTID]?OrderTotalInclVat=<{$order->getPrice()|number_format:2:": ""}>&OrderCurrencyISO=<{$webshop->getCurrency()}>" alt="" /> <{/if}>

What does the code do?

  • {if $order && !$order->getTrackingCalled()} - Ensures that the pixel is only fired once per order
  • $order->getPrice() - Gets the order price including VAT
  • $webshop->getCurrency() - Gets the shop currency (e.g. DKK)

Where do I find my Merchant ID?

You can find your Merchant ID in your Pricerunner dashboard under the integration or tracking settings.

Placement in theme

The code should be placed in the thanks.html file in your theme, or in the common tracking snippet included on the order confirmation page.

Need help with implementation? Contact us at support@shoporama.dk.