this looks awesome – any chance you’ll support the version of bbpress that comes with buddypress for groups?
cheers!
would love to be able to sort forum topics by:
Topic
Voices
Posts
Freshness
is this possible – would it require a plugin?
in your theme’s functions.php
cheers!
not sure if this is the best way but I’m doing this to have the checkbox checked by default:
/* set forum subscription field checked by default */
function my_forum_topic_subscribed_by_default() {
echo ‘<script type=”text/javascript”>jQuery(“#bbp_topic_subscription”).prop(“checked”,”checked”);</script>’;
}
add_action(‘bbp_theme_after_topic_form_subscriptions’, ‘my_forum_topic_subscribed_by_default’);
add_action(‘bbp_theme_after_reply_form_subscription’, ‘my_forum_topic_subscribed_by_default’);
in 2.1 is it possible to disable the HTML tab in the rich editor on a role-by-role basis – i’d like to only give the HTML tab to moderators