AW Mobile version: 1.6.3
AW All version: 2.2.1
First, please note that I have no currency dropdown on my website.
I got this error when clicking on a parent category in the navigation menu.
currencyDropdown[0] is undefined in /js/aw_mobile/navigation.js (line 615).
It seems like a currencyDropdown object was indeed created but was empty so I replaced the faulty line:
- Code: Select all
if(currencyDropdown) {
By this one:
- Code: Select all
if(currencyDropdown.length > 0) {
Any question, feel free to ask

Cheers,
Raph