bbPress

Simple, Fast, Elegant

bbPress plugin browser »

Comment Quicktags for bbPress (1.1)

Unzip the file and copy the quicktags4bbpress folder into my-plugins directory… That’s all! :)

If the my-plugins directory is not present you need to create it under the root directory of your forum.

Note: If you use bbPress in the version 0.72 or 0.73 the plugin will be active only in the page that show a single topic, to malke the toolbar available in all windows to insert/modify topic and post you should edit the header.php file in the standard template or in you presonal template. You have to change the following lines:

< ?php bb_enqueue_script('topic'); bb_head(); ?>
< ?php endif; ?>

into:

< ?php bb_enqueue_script('topic'); ?>
< ?php endif; ?>

< ?php bb_head(); ?>

No modification needed for version 0.74 or above.

The toolbar CSS id is "#ed_toolbar", so you could add this to your stylesheet, I use:

ed_toolbar input

{ background: #14181B; color: white; border:2px dashed #323136; padding: 0px; width: 65px; }

ed_toolbar input:hover

{ background: #323136; color: white; border:2px dashed #14181B; padding: 0px; width: 65px; } }

Code is Poetry.