Directions EMEA 2024
Directions EMEA 2024 Vienna updates and news from our team at the event. Get Business Central Updates.
In the standard nopCommerce Google Analytics plugin, there can sometimes be a case where a user returns to a page, say a checkout completed page, and causes Google Analytics Transaction code to resubmit back to your Google Analytics reports. This issue causes Google Analytics to show you that you might have made more orders than you actually have, your number of sales and even your revenue figures may be effected.
This sort of issue can occur in the following scenarios:
We have come up with a solution to this. Our solution is to only fire the Google Analytics Tracking Code if the order has been created within 15 minutes of the users session. Google does not accept duplicate transactions that are within 20 minutes of that last transaction based on that order.
So if a user opens their browser an hour or so after they completed their order, the tracking code will now not be sent.
Here's the original code located in WidgetsGoogleAnalyticsController.cs:
if (controller.ToString().Equals("checkout", StringComparison.InvariantCultureIgnoreCase) && action.ToString().Equals("completed", StringComparison.InvariantCultureIgnoreCase)) { var lastOrder = GetLastOrder(); globalScript += GetEcommerceScript(lastOrder); } |
And this is our solution code:
if (controller.ToString().Equals("checkout", StringComparison.InvariantCultureIgnoreCase) && action.ToString().Equals("completed", StringComparison.InvariantCultureIgnoreCase)) { var lastOrder = GetLastOrder(); //Only send the e-commerce tracking code if the order was placed within the last 15 minutes. //Google will de-duplicate transactions only if they are in the current session (20 minutes since last hit) if (lastOrder != null && lastOrder.CreatedOnUtc >= DateTime.UtcNow.AddMinutes(-15)) { globalScript += GetEcommerceScript(lastOrder); } } |
If you don't feel confident with editing code or are unable to, we offer this solution and many other cool tricks with our Google Analytics Enhanced e-Commerce plugin.
Here are just a couple of features that we include:
Feel free to download a trial today and let us know how you get on!
You can also read the full documentation for the plugin here.
Directions EMEA 2024 Vienna updates and news from our team at the event. Get Business Central Updates.
Business Central 2024 Wave 2 is here, Get the latest features in our Dynamics 365 Update “what’s new” webinar from the business central experts
Whether your business is B2B or B2C, your order fulfilment process can have a dramatic impact on your brand and customer loyalty. You play a vital role in optimising the entire process to enhance customer satisfaction and streamline operations.