Hey guys. I ran into this on a client’s website. The issue is that the plugin is trying to load an accordion on every page in the administration panel. In the interest of time, I disabled the accordion in the plugin.
/wp-content/plugins/page-speed/function.php
line 199 change
<script>
$(function() {
$( "#accordion" ).accordion();
});
</script>
to
<script>
//$(function() {
//$( "#accordion" ).accordion();
//});
</script>
I can’t find any accordion sections in the plugin settings. Not sure why the code is even there. This is not a great solution because this change will be overwritten if the plugin gets updated.
-
This reply was modified 8 years, 5 months ago by zacharydodd. Reason: Typo: "functions.php" -> "function.php"