• Hey guys and gals

    after installing WordPress 3.9 and activating WooCommerce plugin, the visual editor is no longer working. Any ideas?

    I know this is not the WooCommerce support but a lot of people seem to be having issues with visual editor in WP39

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @diggy, i am curious whether you have solved the problem?

    All you need to do is go to

    class-wc-admin-editor.php

    the location is in
    wp-content / plugins / woocommerce / includes / admin

    Create a backup of the original file by putting
    class-wc-admin-editor-BACKUP.php

    then download the copy, rename to original name

    Find this line:

    public function add_tinymce_lang( $arr ) {
    $arr[‘wc_shortcodes_button’] = WC()->plugin_path() . ‘/assets/js/admin/editor_plugin_lang.php’;
    return $arr;
    }

    Comment the line

    /**
    public function add_tinymce_lang( $arr ) {
    $arr[‘wc_shortcodes_button’] = WC()->plugin_path() . ‘/assets/js/admin/editor_plugin_lang.php’;
    return $arr;
    }*/

    See the difference? that works for me at least for now.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WooCommerce disables Visual Editor in WP 3.9?’ is closed to new replies.