If you want to track your Facebook Ads with iOS devices on the Digistore24 shopping cart, proceed as described below.
Since the iOS 14 update, tracking of Facebook Ads using the Facebook pixel is only possible on your own verified domain. You can learn how to verify your domain here. If you as a vendor want to track your Facebook Ads on the Digistore24 order form with iOS devices, it is necessary to embed the order form or the Digistore24 shopping cart on your own domain.
Digistore24 offers you the following options:
- Option 1 – Integration via Multi-Step Order Box
- Option 2 – Integration via iframe (see below)
Attention
Integration via iframe only works with the responsive order form.
Note
When integrating via iframe, the order form is displayed as a full page without additional content. If you want to display more content, please use Option 1 with the Multi-Step Order Box.
Step-by-Step Guide: Integration via iframe
- First, create a responsive order form.
-
Next, copy and paste this HTML code.
<style> body { margin:0; } </style>
<script src='https://www.digistore24.com/service/js/orderform_widget.js'></script>
<iframe class='ds24_payIFrame' style='overflow: hidden; width: 100%; height: 100%; border: none; margin:0; padding: 0; background: transparent;'src='https://www.digistore24.com/product/123456?iframe=1' ></iframe> - Replace 123456 with the product ID. Keep the GET parameter iframe=1.
- Test the connection by opening the order form, e.g., on a smartphone. Your embedded order form should be responsive, as shown in the example below:
- Example 1:
If your form is not responsive (see Example 2), add the following line to the header (between <head> and </head>):<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- Example 2:
- Example 1:
Passing Tracking Data via GET Parameters:
You can append these GET parameters to your URL:
GET Parameter | Description |
ds24tr | Tracking parameter (for vendors) |
aff | Digistore24 ID of the affiliate |
cam | Campaign key (for affiliates) |
cid | Click ID (for vendors/affiliates) |
sid1, sid2, sid3 ... | Sub-IDs (for vendors/affiliates) |
custom | Custom ID of the vendor |
These GET parameters are then passed on to:
- the next page of your website that the visitor visits,
- the embedded iframe with the Digistore24 order form, and
- Digistore24 (e.g., analytics).
This allows you to:
- view the parameters in Digistore24 analytics,
- use the parameters for S2S postback, and
- analyze your campaigns in a targeted and detailed way.
How it works:
- GET parameters are added to your URL with a "?" and the details are appended to the parameter with "=" (e.g., https://www.my-domain.com/salespage/?aff=johnsmith).
- If you add multiple parameters, you separate them with "&" (e.g., https://www.my-domain.com/salespage/?aff=johnsmith&ds24tr=example).