Google Checkout Adwords Tracking

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 лет назад
The current GC plugin doesn't allow for conversion tracking in adwords. The code needed is

req.ParameterizedUrls.AddUrl("https://www.googleadservices.com/pagead/conversion/YourConversionID/?label=purchase&guid=ON&script=0");


YourConversionID could be a setting. We just have it hard coded for now.

Darren
13 лет назад
Actually the whole URL should be a setting as Adwords provides the URL you should use for your account.
13 лет назад
Thanks. I've just created a work item
13 лет назад
unknown params such as orderTotal and shippingCost can be added also. I know how to add just one parameter

req.ParameterizedUrls.AddUrl("https://www.googleadservices.com/pagead/conversion/xxxxxxxx/?label=xxxxxxxxx&guid=ON&script=0").AddParameter("totalCost", UrlParameterType.OrderTotal);


This will pass the order total once it has been calculated on the google server.

I'm not sure how to do multiple params. I got this far but then got stuck.

GCheckout.Checkout.ParameterizedUrl url = null;

url.AddParameter("totalCost", UrlParameterType.OrderTotal);
url.AddParameter("taxes", UrlParameterType.TaxAmount);
url.AddParameter("shipping", UrlParameterType.ShippingAmount);


GCheckout.Checkout.ParameterizedUrls urls = null;

urls.AddUrl("https://www.googleadservices.com/pagead/conversion/xxxxxxx/?label=xxxxxxx&guid=ON&script=0");


  req.AddParameterizedUrl(url);

13 лет назад
Thanks, Darren. I've just updated the work item
12 лет назад
Hello,
Please use:

GCheckout.Checkout.ParameterizedUrl trackingUrl = new GCheckout.Checkout.ParameterizedUrl("https://example.com/track?mid=123");
    trackingUrl.AddParameter("oid", UrlParameterType.OrderID);
    trackingUrl.AddParameter("ot", UrlParameterType.OrderTotal);
    trackingUrl.AddParameter("zp", UrlParameterType.ShippingPostalCode);
    Req.ParameterizedUrls.AddUrl(trackingUrl);
11 лет назад
Hi,
Where to put Adwords conversion tracking? I have conversions visible in Analytics, but in Adwords no conversions show up. With CPA I guess Google is now passing through less traffic since the code is not there?
J.
11 лет назад
Quantis001 wrote:
Hi,
Where to put Adwords conversion tracking? I have conversions visible in Analytics, but in Adwords no conversions show up. With CPA I guess Google is now passing through less traffic since the code is not there?
J.


1. Is there a default place in NOP to add this (also remarketing?)
2. Is this module still relevant for version 3.2 (seems to include remarketing):

http://nopgoogleadwords.codeplex.com/
11 лет назад
Quantis001 wrote:
Hi,
2. Is this module still relevant for version 3.2 (seems to include remarketing):
http://nopgoogleadwords.codeplex.com/


I tried to install with description.txt change. But on install:
Method not found: 'Void Nop.Services.Configuration.ISettingService.SaveSetting(!!0)'.
11 лет назад
I am modifying source for NOP 3.2 version.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.