I can see the problem now: thank you. The buttons are not working because of this JavaScript error:
This is the code which starts on line 29 (from the source of the page):
That depends on jQuery but jQuery is not yet loaded in the page. Move that to somewhere after jQuery is enqueued or enqueue it properly with a dependency on jQuery and this error will go away.
There is an additional error as well:
This is the code creating that error:
That has two problems. 1) you cannot use $ as a function in WordPress (you need to rewrite the code as jQuery(document).ready(function($){ for example). And 2), it depends on jQuery as well, and, same as the previous error, jQuery has not been loaded.
Once you fix those errors, we can take another look for JavaScript errors if the buttons continue to not work.
Posted 12 years ago on Tuesday January 15, 2013 |
Permalink