HI there
I was setting up BBPress and testing ‘register’ and couldn’t figure out why i didn’t get the verification email. Then I realised I had mis-typed my email. I was therefore wondering if there was any way to add a ‘re-type’ email field to the BBpress registration form?
WP 5.5
BBPress 2.6.5
Theme Groppe from Victor Themes (https://themeforest.net/item/groppe-nonprofit-wordpress-theme/20351940?gclid=EAIaIQobChMIsvqPo_Wz6wIVVrTVCh3mVQpjEAAYASAAEgKMKPD_BwE)
Thanks
Martin
Hopefully your plugin will be approved and this will ensure WordPress and BBPRESS standards are maintained 😉
Thanks
There used to be a plugin called ‘bbPress Profile Link Shortcode’ created by ‘Tyler Tervooren’
Alas this plugin is out of date, is there any equivalents ?
bbPress Profile Link Shortcode
Dear @slugs,
I am WordPress evangelist, and we want to cover as much as possible about WP.
Main features I want to have:
1. Activity page, like on facebook
2. Chat
3. Messenger for users, want push-ups
4. Project Manager to manage any WP project.
I will contact you if the site is ready.
Thank you very much.
Yes, that sounds like a great site idea. I think the web is about 30% wordpress?
FYI – My WordPress and BBPress installations are up-to-date and I have an Icon in the Toolbar which when clicked, goes to three option (Dashboard – Change Password and Log-Out) but does not give access to users topics and post being created etc.
If I use the Widget BBPRESS LOGIN LINKS Widgets – and click on the icon, then it gives me access to the profile details I am looking for, but I would like to use this profiles option for the menu (not wideget)
😉
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
Code Snippets
add_filter( 'bbp_new_topic_pre_content', 'rew_strip_tags' );
add_filter('bbp_edit_topic_pre_content', 'rew_strip_tags' );
add_filter( 'bbp_new_reply_pre_content', 'rew_strip_tags' );
add_filter('bbp_edit_reply_pre_content', 'rew_strip_tags' );
function rew_strip_tags ($content) {
$content = strip_tags($content);
return $content ;
}
Heeelllloooo bbPress! 🙂
This is my first time writing you and I have first say, I LOVE your plugin. GREAT job!
I have a couple of question about the Registration page.
Website: http://zolofly.com/register/
WordPress Version: 5.5
bbPress Version: 6.2.0
1) How can extend the Profile Details … under the Account Details so that the page lays out nicely?
Screenshot for your reference: http://prntscr.com/u36rrl … make since?
2) How can I make some columns for the Hobbies? Rather than it just being one long row.
3) Where can I add the Terms and Conditions next to the Privacy Policy?
Screenshot for questions 2 and 3 for your reference: http://prntscr.com/u36tex
That’s it and thank you so much for your support,
Christine 🙂
Discuss with codex of WordPress. add_role function could help.
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
Code Snippets
add_filter( 'bbp_get_forum_archive_title', 'tcv_forum');
function tcv_forum () {
Return 'Forum' ;
}
Hi there,
I am currently setting up a bbpress forum. This is why I post a view threads atm because I have questions. Hopefully, it’s not perceived as spam.
I know that this is not a bbpress issue, more of a wordpress thing in general. However, I guess that most bbpress developers/admins have solved this issue – therefore I ask it here.
I want to disable access to wordpress admin dashboard for all normal forum participants (role: subscriber/participant).
I have done some searching and found that it could be achieved through the following custom php.
disable wp-admin:
// redirect back to homepage and not allow access to wp backend for subscribers
function rkk_redirect_admin(){
if ( ! wp_doing_ajax() && ! current_user_can( 'edit_posts' ) ) {
wp_redirect( site_url() );
exit;
}
}
add_action( 'admin_init', 'rkk_redirect_admin' );
disable wp admin toolbar:
// disable wp toolbar on the frontend of website for subscribers
function rkk_disable_admin_bar() {
if( ! current_user_can('edit_posts') )
add_filter('show_admin_bar', '__return_false');
}
add_action( 'after_setup_theme', 'rkk_disable_admin_bar' );
I included that code in functions.php of childtheme. However, it does not seem to have an effect. Subscriber can still access wp-admin and can see the wp toolbar in the front end.
Anybody have a good solution for this? I don’t want to use an extra plugin for that.
thank you for helping. best regards, peter
Hi there,
I am currently setting up a bbpress forum. This is why I post a view threads atm because I have questions. Hopefully, it’s not perceived as spam
I noticed that new users are automatically assigned to the forum role administrator, eventhough automatic role assignment as forum admin for new users is not checked under settings > forum > user settings for forum.
Why is this? Am I missing something?
New users should just get the wordpress default role subscriber and forum role participant.
Hopefully you can help. best regards, peter
Hi Guys
I have just added my first plugin to the WordPress Plugin Directory:
Add AutoSave | Fullscreen to TinyMCE
I wonder if it can be added to the list here on the site (or maybe in bbp style pack list)?
If you have the TinyMCE toolbar activated in your bbPress forum then it should hopefully show the extra two toolbar icons as details in the description for the plugin.
It works for me – has done so for many months. I just decided to make it available to the community and updated it to use the officially supported TinyMCE as was released with WordPress 5.5.
I am no plugin guru by any means, if it it helps anyone then it will have served it’s purpose.
Have a good day.
Andrew
Whenever I activate bbpress on my site, my theme breaks…
This started happening with the WordPress 5.5 Upgrade yesterday.
If I deactivate the bbPress, then make my theme changes. Then reactivate it, all works. But I am not allowed to do ANY searchs in addplugins (Stalls) no deletes or theme page changes.
#bbpress-forums
is the ID for forums – suggest you ask here on how to hide breadcrumb
https://wordpress.org/support/plugin/breadcrumb-navxt/
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
Code Snippets
add_filter('bbp_has_replies_query', 'rew_modify_replies_query');
function rew_modify_replies_query($bbp_r) {
$bbp_r['order'] = 'DESC';
return $bbp_r;
}
add_filter('bbp_show_lead_topic', 'rew_show_lead_topic');
function rew_show_lead_topic () {
return true ;
}
bbp style pack
once activated go to
dashboard>settings>bbp style pack>topic order
I would like to know how to make bbpress show the username on the posts instead of the Users First and Last name.
Wordpress 5.5 with bbpress 2.6.5
if you want anyone to be able to register for the forums, yes you do, and if you do then yes anyone can register, wordpress and bbpress use the same userdatabase.
Otherwise, you are looking at a manual registration system, which is quite easy to do, just use one of the many form plugins available – contact form 7 (and add the flamingo plugin) is very popular, and add users.
or if it is bots registering, use one of the many anti bot plugins available eg captcha to prevent bots registering.
Does the “anyone Can Register” option in WordPress Settings need to be enabled/checked in order for someone to sign up for the forums on my site? I have been leaving that enabled but now I have like 10,000 subscribers on my site! If people can register for the Forums without my having to enable that, it would help.
Thanks!
topics can be ‘sticky’ or ‘super-sticky’
sticky posts go at the top of their forum
Super sticky posts go at the top of every forum
sounds like your topics are becoming super sticky
you can look at these in then backend
dashboard>topics>edit topics and select topic > topic attributes on top right hand side> Type
they can also be set in front end
where in the topic they show in admin as
stick (to front)
if you click the ‘stick’ then it is sticky, if you click the ‘(to front)’ it becomes super-sticky which is very easy to do by mistake.
on relationships, bbpress uses wordpress ‘post-parent’
so a reply has a post parent of the topic it belongs to
a topic has a post parent of the forum it belongs to
and a forum has a post parent of a forum if it is a sub forum, or a category if it belongs to a category
These relationships are also stored in the post_meta table
details on ‘children’ are not kept – for instance displaying topics is done by a function called bbp_has_topics which selects topics where the post_parent is the forum concerned. bbp_has_relies has a similar serach for replies where the post_parent is the topic concerned.
Hi @fl3xtra,
If I understand correctly the problem you’re having, it’s a bug:
https://bbpress.trac.wordpress.org/ticket/3356
I’ve tried this patch on one of my sites and it appears to work. Bear in mind that I am NOT an expert on this.
Here’s the thread where I found out about the patch:
Several questions regarding freshness