Forum Replies Created
-
In reply to: Mass editing of topics does not work
I don’t understand your question – possibly lost in translation
In reply to: Search Button not showinggreat
In reply to: Question Regarding default bbpress support forumthere is a theme for this, and my style pack plugin contains some widgets
In reply to: Customized Translation filesyou can use ‘gettext’ if you haven’t too many
In reply to: Importing from phpBB2.6 RC7 holds updated importers, but then you are running with an unreleased version
In reply to: Closing topicsgreat
In reply to: Closing topicsgreat
hmm… suggest you read the documentation and also look at
dashboard>settings>forums allow anonymous posting
In reply to: Using Buddypress avatargreat – thanks for posting the solution
In reply to: Pending topicsno idea 🙂
In reply to: Fetch different avatargreat – thanks for adding
In reply to: Creating a topicvery doubtful that bbpress would add this – you’d need to register a trac ticket
In reply to: ID for Register Buttonit has a class of ‘bbp-register-link’ – is there an issue with using this ?
In reply to: Whose online / forum statsok
In reply to: Posts with 3 or more linksI dug into this a bit further
The moderation in bbpress is looking for ‘<href…’ so if you just post links ie
you post this
https://bbpress.org/forums/topic/posts-with-3-or-more-links/not this
<a href="https://bbpress.org/forums/topic/posts-with-3-or-more-links/">some link</a>then no check is done – it is looking for links not urls
There is some capability in the code via
$reply_content = apply_filters( 'bbp_new_reply_pre_content', $reply_content );to take out more than 2 links, but there is not an easy way to put 3 urls into moderation
In reply to: Opening Subscriber’s profile editor from toolbargreat – glad to have helped.
In reply to: Opening Subscriber’s profile editor from toolbaruntested but try
if ( current_user_can( 'subscriber' ) ) { add_action('wp_before_admin_bar_render', 'rew_admin_bar_remove_wp_profile', 0); add_action('admin_bar_menu', 'rew_add_bbp_profile', 999); } function rew_admin_bar_remove_wp_profile() { global $wp_admin_bar; /* **edit-profile is the ID** */ $wp_admin_bar->remove_menu('edit-profile'); } function rew_add_bbp_profile($wp_admin_bar) { $current_user = wp_get_current_user(); $user=$current_user->user_nicename ; $user_slug = get_option( '_bbp_user_slug' ) ; if (get_option( '_bbp_include_root' ) == true ) { $forum_slug = get_option( '_bbp_root_slug' ) ; $slug = $forum_slug.'/'.$user_slug.'/' ; } else { $slug=$user_slug . '/' ; } $profilelink = '/' .$slug. $user . '/edit' ; $wp_admin_bar->add_node( array( 'parent' => 'user-actions', 'id' => 'bbp-edit-profile', 'title' => 'Edit Profile', 'href' => $profilelink, ) ); }In reply to: Opening Subscriber’s profile editor from toolbardo you really mean WordPress role subscriber or bbpress role participant ?
In reply to: Redirection after registrationgreat
In reply to: Replace bbP Manage Subscriptionscould be done, but beyond free help – sorry
In reply to: Posts with 3 or more linksno idea 🙂
In reply to: Posts with 3 or more linksjust set yourself up a test account
so create a user called say ‘myusertest’ and give it a fictitious email account – it has to be in the correct format so say ‘abc@def.com’ and set a password
you can then log on as that user and you’ll get participant access to see.
In reply to: Opening Subscriber’s profile editor from toolbarThis code will change the WordPress profile to bbpress profile
add_action('wp_before_admin_bar_render', 'rew_admin_bar_remove_wp_profile', 0); function rew_admin_bar_remove_wp_profile() { global $wp_admin_bar; /* **edit-profile is the ID** */ $wp_admin_bar->remove_menu('edit-profile'); } add_action('admin_bar_menu', 'rew_add_bbp_profile', 999); function rew_add_bbp_profile($wp_admin_bar) { $current_user = wp_get_current_user(); $user=$current_user->user_nicename ; $user_slug = get_option( '_bbp_user_slug' ) ; if (get_option( '_bbp_include_root' ) == true ) { $forum_slug = get_option( '_bbp_root_slug' ) ; $slug = $forum_slug.'/'.$user_slug.'/' ; } else { $slug=$user_slug . '/' ; } $profilelink = '/' .$slug. $user . '/edit' ; $wp_admin_bar->add_node( array( 'parent' => 'user-actions', 'id' => 'bbp-edit-profile', 'title' => 'Edit Profile', 'href' => $profilelink, ) ); }Put this in your child theme’s function file – or use
In reply to: Posts with 3 or more linksprobably – suggest you test with users of different capability if you want to be sure