I am running 3.8.1 clean install and Customizr theme, and while I am able to use the visual editor it is not working properly (if I even click on it my HTML gets corrupted/overridden… glad I don’t use it anyway, but God forbid I ever make the mistake of clicking on the visual editor tab and then [Update] button!) Possibly a theme-specific issue, but the only issue Chrome developer tools reports, during page load, is the following warning:
event.returnValue is deprecated. Please use the standard event.preventDefault() instead. jquery.js?ver=1.10.2:4
Not sure if this warning is related to the issue, but it’s the only issue reported. If it helps narrow-down root cause the following threads point to register_sidebar
as possibly linked to this warning:
Event_Organiser Calendar Next and Prev links not working
Event Organiser FAQ
FYI, I am not using “Event Organiser.” I only mention these because I recall implementing a register_sidebar
based upon this Customizr code snippet, and it appears to be possibly incomplete? Not sure; grasping at a few straws here… the before_
and after_
are empty; is this ok?
if (function_exists('register_sidebar')) {
register_sidebar(array(
'name' => 'Extra Widget In Socials',
'id' => 'extra-newsletter-widget',
'description' => 'Extra widget in the social links area',
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => ''
));
}
@crysclarke: Please provide more info; try opening your home page in Chrome, then go to “Tools -> Developer Tools” and reload your home page. Does the debugger pause? If so, click to play through the issues until your page loads completely and tell us what errors and/or warnings are reported in the Developer Tools Console, if any.