Hi,
I use Prestashop.
When I make a payment by bank transfer (mollie), the mollie module does not redirect me to the standard page (oder-confirmation) of prestashop, but to a specific page of the mollie module:
Ex: https://mydomain/module/mollie/return?cart_id=3396&utm........... (+ specific message).
This is annoying because I can't integrate the Google Ads conversion tracking script.
Is there another way to do this?
Is it possible to insert the tracking script into this page?
Thank you in advance for your feedback
/****************/
exemple of script to add
{if isset($orderID) && $orderID }
{literal}
<script class="js-teo-conversion">
gtag('event', 'conversion', {
{/literal}
'send_to': '{$googleIDShort}/{$googleIDLong}',
'value': {$orderValue},
'currency': '{$orderCurrency}',
'transaction_id': '{$orderID}'
{literal}
});
</script>
{/literal}
{/if}