Simple packaging of the amazing Tiny MCE tool
bbPress Plugin Browser »
Tiny MCE (3.2.5)
Average Rating





Your Rating
Author: Nicolas Grasset
-
Plugin blog post: http://www.longwindyroad.com/2009/07/19/bbpress-plugin-tiny-mce-3-2-5/
Posted: 2 years ago # -
Why not just have people download tinymce directly,
your plugin is only 800 bytes and tinymce is over 500k?I cannot caution people strongly enough *not* to use tinymce for regular users on a live site.
The javascript size is staggering and the "tiny" part is a oxymoron."Tiny" mce consists of 350 files in 106 directories and is larger than 500k, it's insanity.
Posted: 2 years ago # -
I absolutely agree, but since I saw about 3-4 forum topics about how to use "Tiny" MCE, I am sure some may want to use this.
I did not want to distribute a modified version of Tiny MCE, but as it is right now, most plugins will not be loaded so, although it will take 500k on the server, clients will only download a fraction.
Look out for a tinymce_lite plugin then! :)
Posted: 2 years ago # -
Thanks! This is exactly what I've been looking for. But how do I get the editor to show up for the posts? I've installed it and activated it.
Thanks in advance.
Posted: 2 years ago # -
Make sure bb_head() is called in the header of your template, as it is per default.
Then, all <textarea> tags should be replaced automatically.
Posted: 2 years ago # -
It's probably better to init tinymce in the footer (bb_foot) instead of the header. This way the page can load first and then the javascript can load from the external with all it's bloat. You might also be able to get away with
defer="defer"on the javascript to delay loading.There is no "lite" version of Tinymce as it has to load at least 200k in all cases.
If there is a shared copy of tinymce on a trusted source ala google shared libraries, you'll want to point to that instead of a local copy to potentially speed up the loading. But it has to be a trusted source or you'll get xss.
Posted: 2 years ago # -
bb_head() is there in the header. I'm on a fresh 1.0.1 installation, using kakumei template, and only the "Approve User Registration" and "Hidden Forums" plugins installed. But still, nothing.
The only thing I've done though, is to put the Tiny MCE foler in "my-plugins" and activated it, is there something more I should do that I didn't know about?
Posted: 2 years ago # -
@hundsim that should work then. Please give me a url to check.
Posted: 2 years ago # -
Thanks for taking your time.
Posted: 2 years ago # -
ye its not working for me too
Posted: 2 years ago # -
@hundsim
I do not see the proper header on your bbpress setup, but then again I cannot login either and there is no topic :)
It works for me on a new setup for moviezine.se. I will make some more test on "fresh" bbpress setup...
Posted: 2 years ago # -
@Fellowshipofone
Thanks for trying to help. Unfortunately i had to close the access as it is a private forum.
I hope everybody else have better luck than me.
Posted: 2 years ago # -
I have bb_head() called too but it doesnt work...
<head<?php echo $_head_profile_attr; ?>>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php bb_title() ?></title>
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php if ( 'rtl' == bb_get_option( 'text_direction' ) ) : ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
<?php endif; ?><?php bb_feed_head(); ?>
<?php bb_head(); ?>
</head>
Posted: 2 years ago # -
works for me. is there a way to add the link/unlink button for urls? thanks.
Posted: 2 years ago # -
This one is not working for me using bbPress 1.1. No errormessage, just not working. Yes, I do have bb_head() in my header.
Posted: 2 years ago # -
Stupid question time: If you've got WordPress or WordPress MU installed & you install bbPress, couldn't bbPress use the copy of TinyMCE already in WordPress? Or is it tightly integrated into WordPress & can't be called separately?
Tony
Posted: 2 years ago # -
Ah..The plugin doesn't take care of any of the tuning possible with TinyMCE. Are you willing to take care of the tuning and improve the plugin? I can see some scope of other features & optimizations too.
Posted: 2 years ago # -
I have the same issue, bb_head() is called in header.php, but nothing appears. Are there any other settings I have to check?
Posted: 2 years ago #
Add a Comment »
You must log in to post.