v2.1 update exposes some JS issues in theme
-
Normally, WordPress isn’t happy with:
$(document).ready(function() {
which can easily be replaced in your theme files with:
jQuery(document).ready(function($) {
For whatever reason, many vendor files in the theme functioned quite well before as the first declaration. Once I updated to v2.1, they all suddenly broke and had to be updated. Not a huge deal, but confusing as to why we had no problems for a few years, and this plugin update today exposed this issue.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘v2.1 update exposes some JS issues in theme’ is closed to new replies.