At this point, you will need to be familiar with JavaScript/CSS to add your content properly on pages by Checkify+. If you struggle with writing code, we recommend you use ChatGPT or a similar tool, an HTML generator like this one https://html-css-js.com/js/editor/. You may get working solutions and then copy the code snippet of your content from there. Alternatively, consult a third-party developer.
1. Adding a script to Checkify
Go to Scripts & API:
Select the desired type: Script in header or Script in body.
Choose the page (destination) where you want to add the script: Only for checkout page / Only for Thank You page / Both for checkout and Thank You pages.
Give the script a name by filling Script title.
Add some basic script content in the field below. Please mind the formatting (opening and closing tags).
Do not forget to click Save changes.
You can use some variables in your scripts.
- when you set "Only for Thank You page":
{total_amount_chk} - order total amount
{items_quantity_chk} - order total quantity
{currency_chk} - currency
{order_id_chk} - checkify order id
{user_agent_chk} - user agent
{ip_chk} - user ip
{checkout_id_chk} - checkout id
{payment_system_chk} - payment system name
{email_chk} - user email (if present)
{phone_chk} - user phone (if present)
{country_code_chk} - user country
- when you set "Only for checkout page or Both for checkout and Thank You pages":
{total_amount_chk} - total basket amount
{items_quantity_chk} - total basket quantity
{currency_chk} - currency
{user_agent_chk} - user agent
{ip_chk} - user ip
{checkout_id_chk} - checkout id
{country_code_chk} - user country
ATTENTION: Do not change the variable format, use it as is. For instance, {total_amount_chk} should be used as {total_amount_chk} in your scripts, like in this example:
<script>fbq('track', 'Purchase', {currency: {currency_chk}, value: {total_amount_chk}});</script>
Some services (like affiliate marketing) may still not work properly if added as a script. Try to experiment by using Google Tag Manager to make them work! Learn about the integration here.
There could be services that are synced via Zapier. Try researching them on this platform and refer to our article on Checkify-Zapier integration for more.
2. Common questions
π I want to integrate the Pixel by Triple Whale to my custom checkout.
In order to track visitors who place orders on your store and connect their previous site activity to their purchase, the Triple Pixel must be added via admin.checkify.
Copy the code provided on the Pixel Settings page of Triple Whale app. It may look like this:
Open Admin > Scripts & API > press "Add script +" button.
Select "Script in header", "Both for checkout and thank you pages".
Give your custom script a name.
Paste the snippet of the code (script).
Click "Save changes".
π Can I integrate other third-party tracking and analytics scripts with Checkify+?
Integration of third-party tracking and analytics scripts depends on the specific service you want to use. We recommend reviewing the technical documentation of the service or reaching out to their support team for compatibility details. If needed, consider consulting a developer with relevant experience to ensure proper implementation.
β