#Prestashop + Mollie + conversion Google Ads

1 messages · Page 1 of 1 (latest)

viscid scaffold
#

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}

orchid mountain
orchid mountain
#

@viscid scaffold After checking and evaluating your proposal, we came to the conclusion that this kind of modifications must be done with default Prestashops hooks and should be handled in the shop side not Mollie module.

viscid scaffold
#

@orchid mountain Hi,
Thank you for your response, but I don't really understand what you mean. I have the impression that you are telling me not to use the mollie bank transfer option but to use the default bank transfer module of prestashop?
Is this your recommendation?