For people like me new to php this is how to make a plugin with John’s code :
paste this code in an editor and save the file as teenybb.php :
<?php
/*/
Plugin Name: Teenywithbb
Plugin URI: https://bbpress.org/
Description: Enable Teeny Mce in bbpress
Version: 1.0.1
Author: John James Jacoby
Author URI: https://bbpress.org/
/*/
function foo( $args = array() ) {
$args['teeny'] = false;
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'foo' );
copy this file in your plugin directory where you usually copy other plugins.
You can see the plugin named Teenywithbb in wordpress you juste have to active it.
and then you have tinyMCE Advdaced as editor in bbpress 2.2. 🙂
Hi everyone, I need a little help.
I’m not a developer and I just would like to know where to insert the code posted by Josh. (which file and where inside the file).
Thanks a lot.