#id navigation problem
-
Hi,
great plugin. I had a problem with #id navigation, as changing the currency on a #id URL adds the ?currency to end of the URL, but doesn’t change the currency display.
There is a commented fix in js/front.js, line 243, but uncommenting this didn’t solve the problem.
My fix in case it is useful was to
1) add beneath line 243:
l = window.location.href.split(“#”)[0];2) change line 272 from
window.location = window.location.href + ‘?currency=’ + jQuery(this).data(‘currency’);
to
var m = window.location.href.split(“#”)[0];
window.location = m + ‘?currency=’ + jQuery(this).data(‘currency’);
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘#id navigation problem’ is closed to new replies.