Forum Replies Created
-
In reply to: Fancy Editor Checkbox Not Sticking
I get this issue because the BBP Threaded Replies plugin automatically de-activates the Fancy Editor.
bbPress Threaded Replies is incompatible with the Fancy Editor; enabling threading will automatically disable the Fancy Editor.
I’m not sure why they did that, but I was able to get around it by adding
remove_filter('bbp_use_wp_editor', '__return_false');
to my theme’s functions.php file.In reply to: Fancy Editor Checkbox Not StickingI am also having this issue. I assume it has to do with this option being ‘disabled’ as mentioned in the plugin at https://wordpress.org/support/plugin/bbpress-enable-tinymce-visual-tab.
I tried installing that plugin and enabling but the editor still doesn’t show up. Anyone have any information about this?
In reply to: Converting from punBB?There is a converter that now comes packaged with bbPress. You can run the converter by visiting Tools->Forums. There is no punBB converter included, but you can modify the Example.php converter based on punBB’s database structure. The converters are located in includes/admin/converter. The converter basically is a way to specify how the fields need to be mapped.
Unfortunately the Example.php seems to be missing a few key fields, so it would be good to look at the bbPress1.php converter for an idea of all of the necessary fields (ie. the topic post_content field has no field mapped to it in Example.php).