Forum Replies Created

Viewing 1 replies (of 1 total)
  • Just wanted to confirm that I am having the same issue on WP 3.9 with Visual Composer. I first noticed the issue with white type on the white background which I fixed with a simple function call to the admin_head,

    function name_of_function_call() {
       echo '<style type="text/css">
               .js .tmce-active .wp-editor-area{color: #000000!important}
               </style>';
    }
    add_action('admin_head', 'name_of_function_call');

    But after not seeing the WYSIWYG editor and not being able to see any difference after clicking “visual” or “text” in the visual composer text editor I knew there was some sort of bug going on. I’ve tried further debugging per what Ozz recommends but I’m not getting any js errors in the console.

    This is very frustrating to deal with when you have a site going live. Anyone else have any ideas?

Viewing 1 replies (of 1 total)