Home > Paid Traffic Sources > eCommerce

How to track Shopify sales INTO your tracker? (4)


02-07-2019 02:43 PM #1 kinged (Member)
How to track Shopify sales INTO your tracker?

Hey

So as the title says, i need to somehow add the postback url so Shopify sends my tracker (FunnelFkux) the sale and amount.

Is this even possible?


02-07-2019 04:14 PM #2 Mr Baffoe (Veteran Member)

Yes pretty sure funnelflux can do it. There are some threads with solutions that I can link to once I’m at my computer.

Prosper202 has an undocumented support for it. The Prosper202 postback url can read conversion data sent to it via Shopify webhooks and the tracking data is stored by template modification.

I don’t publicize it because it’s still a bit of work to setup and I would like to automate the process via a custom Shopify app.


08-18-2020 07:49 AM #3 kinan (Senior Member)

Any easy work around for it?


08-18-2020 09:00 AM #4 platinum (Veteran Member)

When setting up your product offer link on FunnelFlux make sure to append ref={hit-id}

Example: myshopify.store/product-link?ref={hit-id}

Then, go to Settings > Checkout > Order processing > Additional Scripts to add your Funnelfux conversion tracking pixel

Code:
<img src='https://trk.myfftracker.com/tracking/conversions/pixel.php?flux_pix=xxxxxx&flux_payout={{ total_price | money_without_currency }}&flux_txid={{ order_number }}&flux_hid={{ landing_site_ref }}' alt='' width='1' height='1' />

{{ landing_site_ref }} will add the value we previously added on ref parameter
{{ total_price | money_without_currency }} will add the order value without the currency symbol
{{ order_number }} will add the order value that can be useful to be tracked as the transaction id of the conversion

Optionally you can implement it using the 'if first time accessed' tags

Code:
{% if first_time_accessed %}

<img src='https://trk.myfftracker.com/tracking/conversions/pixel.php?flux_pix=xxxxxx&flux_payout={{ total_price | money_without_currency }}&flux_txid={{ order_number }}&flux_hid={{ landing_site_ref }}' alt='' width='1' height='1' />

{% endif %}
Same logic applies for other click trackers and should work pretty well


Home > Paid Traffic Sources > eCommerce