Viewing 3 replies - 1 through 3 (of 3 total)
  • I am having the exact same issue myself. Working on seeing which plugin is conflicting or if it is my theme (using Genesis Framework)

    Could you provide the code you’re using?

    Thread Starter Onur Oztaskiran

    (@sj_o)

    Below is the code used in a plugin I use (visual composer builder plugin for WP)

    function vc_textarea_html_form_field($settings, $value) {
        $settings_line = '';
        if ( function_exists('wp_editor') ) {
            $default_content = __($value, "js_composer");
            $output_value = '';
            // WP 3.3+
            ob_start();
            wp_editor('', 'wpb_tinymce_'.$settings['param_name'], array('editor_class' => 'wpb_vc_param_value wpb-textarea visual_composer_tinymce '.$settings['param_name'].' '.$settings['type'], 'media_buttons' => true, 'wpautop' => false ) );
            $output_value = ob_get_contents();
            ob_end_clean();
            $settings_line .= $output_value.'<input type="hidden" name="vc_textarea_html_content" class="vc_textarea_html_content" value="'.htmlspecialchars($default_content).'"/>';
        }
        return $settings_line;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘wp_editor() breaks apart in 3.9 beta 1’ is closed to new replies.