-- HikaShop version -- : 2.6.4
-- Joomla version -- : 3.6.2
I have one case with Paypal payment and Google adwords conversion.
I have a google adwords conversion code which looks something like this:
<!-- Google Code -->
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = xxxxxxxxxxxx;
var google_conversion_language = "xx";
var google_conversion_format = "x";
var google_conversion_label = "xxxxxxxxxxxx";
var google_conversion_value = <?php echo $this->element->prices[0]->price_value; ?>;
var google_remarketing_only = false;
/* ]]> */
</script>
<script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
</script>
<noscript>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/1008879972/?value=<?php echo $this->element->prices[0]->price_value; ?>&label=dmuACJSH3R4Q5JKJ4QM&guid=ON&script=0"/>
</div>
</noscript>
I am using two type of payment.
Hikashop Stripe Payment Plugin
HikaShop Paypal payment plugin
I have placed the above google conversion code in a "thank you page" which is the Return url for both payment form.
But there is one problem with cutsomers using Paypal payment. Not all paying customers choose to return to my "thank you page" after making their payment.
And therefore I loose Google adwords conversions on these sales.
This is no problem with those who choose to pay with stripe, because they stay on my site and are automatically directed to the thank you page after payment.
Do you have any advice on this matter ?
If I enable the Hikashop Google Analytics Plugin, will this help me to solve this problem ?