- This topic has 1 reply, 1 voice, and was last updated 7 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
If you are getting a JS error that is causing the MiniMax visual editor to fail in WordPress 3.9.1, try adding this to your functions.php file:
// Minimax missing jQuery Dialog fix
function minimax_javascript_fix() {
if ( is_admin() ) {
wp_enqueue_script(‘jquery-ui-dialog’);
wp_enqueue_style(‘wp-jquery-ui-dialog’);
}
}
add_action(‘admin_print_scripts’, ‘minimax_javascript_fix’);
Another fix for JS errors with the front end editor. Unfortunately, you’ll have to edit a plugin file for this one.
Do a find and replace for ‘.live’ and replace with ‘.on’ in the js file: plugins/minimax/js/operations-front.js.
Time for WP Eden to update their plugin.