Hello
I´m using the CkEditor (and CK finder) on my WP-page togheter with this plugin: http://wordpress.org/extend/plugins/wp-user-frontend/
It works great, but when I load a Wordpress page I dont get the CKeditor the first time.
Only a grey textarea with white letters. (No toolbar)
I have to press the Visual button to get the CKEditor Toolbar.
How can I change that, so that the CKEditor Toolbar loads when I load the page the first time?
/Henrik
It's quite hard to say which
It's quite hard to say which plugin is responsible for the conflict... Are you using the latest version of the CKEditor for WordPress extension?
You may try to ask around on the CKEditor for WordPress extensionsupport forum, perhaps some users more knowledgeable in WordPress will be able to help.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Hi, I have exactly the same
Hi, I have exactly the same issue and i didnt have time to invastigate it much, so i did this:
* - it is a bit lame.
<script src="YOUR LOCATION/js/jquery-1.9.0.min.js"></script>
<script>
$(document).ready(function () {
setTimeout(function() {
$("#new-post-desc-tmce").click();
}, 500);
});
</script>
inside wpuf-add-post.php
you will most likely need same code in edit.php and so on if you use them.
Where can I find...
Hello and thanks for the answer.
I´m a rookie. How can I find the correct jquery location?
And would it be OK to just paste the code at the bottom af the wpuf-add-post.php?
/Henrik
this is how it goes
For jquery there are two options:
if your WP is not on your own hosting, you can use this (just copy that line instead the first line that i suggested yesterday):<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
If you have your own hosting - option is open thia link http://code.jquery.com/jquery-1.9.1.min.js in your browser, you will see lots of code, save it as a file ("Save page as" in Google Chrome for example), upload that JS file inside some folder of your web site, can be main root folder but better create "js" folder for example. and then in the code after src=" indicate a way to that file
like http://yourwpblog.com/js/jquery-1.9.1.min.js
in wpuf-add-post
add the script part before
<?php wp_head(); ?>
you should be carefull not to get it inside PHP code, so either just a line before <?php wp_head(); ?> or in worst case whenever you see some html tags like <div> just post it in a space before a new opening tag.
once again if you also use edit page (wpuf-edit-post) - post same code there