TurkeyFish Posted September 12, 2017 Share Posted September 12, 2017 I'm using Prestashop 1.6, the free Amazon Pay module, and the free Google Analytics module.Amazon Pay orders are working mostly fine but are not recording any transactions with Google Analytics. The rest of my payment methods do.The module author has not been able to solve the issue. I hired 4 developers on Upwork to try to solve it, without success. I suspect it's a small fix, once you know what to do. Please PM me with your experience in working with the Amazon Pay API, how you might solve the problem, and your rates. Link to comment Share on other sites More sharing options...
jd440 Posted September 17, 2017 Share Posted September 17, 2017 I don't know Amazon Pay but does customer are redirect somewhere to pay or stay on your website? I guess there are redirect? If yes you should add you analytics tag on this page Link to comment Share on other sites More sharing options...
ELEGANTAL Posted September 24, 2017 Share Posted September 24, 2017 The solution to this problem is to register orderConfirmation hook in Amazon Pay module's install() function, like below: public function install() { ... $this->registerHook('orderConfirmation'); ... } Google Analytics module tracks transaction in this hook. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now