ReferenceError: _wpCustomizeLoaderSettings
-
With current 1.0.3 and WP 4.2.2 sometimes in backend I get this in javascript console:
ReferenceError: _wpCustomizeLoaderSettings is not definedNot sure when and why, happens e.g. on a site with Intuition theme when
/wp-admin/themes.phpis accessed, but also on some other admin pages.Using this fix for now on that site:
function my_admin_footer() { echo '<script type="text/javascript">var _wpCustomizeLoaderSettings = _wpCustomizeLoaderSettings || {}</script>'; } add_action( 'admin_footer', 'my_admin_footer', 99 );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘ReferenceError: _wpCustomizeLoaderSettings’ is closed to new replies.