if the author is not anonymous, use the user_url
it would be better to keep how it is leading to the userprofile just in case someone didnt input their website url in their profile.
else use the comment website url
this sounds like you want to use the website field in the anonymous user form when they post.
so basically you want it to act sort of like how wordpress comments handles the comment author link on this one.
am i right??
@atlantis1525
on the backend of wordpress you can see a menu item called toward the bottom-left called settings, from there , there is more settings for things like discussion , writing , and permalinks.
here is what it looks like
https://codex.wordpress.org/Settings_Permalinks_Screen
ok, try
https://wordpress.org/plugins/widget-logic/
use
is_bbpress()where you want a widget displayed on bbpress pages and
!is_bbpress() where you don’t
Yes of course.
Website user url is the field in the user profile in WordPress.

Don’t know what you did before but use my plugin
https://wordpress.org/plugins/bbp-private-groups/
3. Buddypress allows more member profile functions, group creation with private forums and a facebook style activity wall, this is all added by Buddypress to the already existing forum only functions from BBpress.
They integrat by following the steps offered after instal, I always instal BBPress first.
If you want you can have a look a my site how they work together, I believe they should always be used in tandem.
Buddy/BB/Wordpress
4. If you create the categories and the forums, then members can only post topics in forums on hose categories by default.
2. You can change that text in form-reply.php, which means you need to make a bbpress template folder in your child theme.
1. I wish it was true.
Hope this helps.
Peter Hamilton
there is a few buddypress plugins that allow users to change their username.
search the wordpress plugin directory.
since it is a wordpress role that would let you see the users, then the subscriber role will prevent you doing this.
I think it would be a useful thing to have but don’t know anything that currently does this, sorry !
This could be an issue with your rewrite rules. To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings>Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again.
try resetting your permalinks
In your WordPress Administration Screens navigate to Settings>Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again.
So I just installed bbPress (2.5.4) successfully after having buggy versions last week. Though I’m having a lot of issues this time. I’m using WordPress 4.1.1 and Twenty Fifteen as my theme.
I created a new forum which I called, “forum” and a topic called, “general”. When I go to view the forum, it takes me to /forums/forum/forum which I believe should be /forums/forum but I can’t go there without it redirecting me. /forums just redirects me as well.
Following the codex, I tried method two which involved using the shortcode. This works all fine until I clicked on the forum, which took me to /forums/forum/forum
My site is:
– method 1
– method 2
How can I fix this issue? Please don’t say disable plugins because I know for a fact, that isn’t the reason.
i think this is some custom development go post a job at http://jobs.wordpress.net/
@wadams92101
i suggest you talk to the developers of the wp mobile app at their forums.
i dont know what you could possibly add though to it though.
https://ios.forums.wordpress.org/
https://android.forums.wordpress.org/forum/troubleshooting
@critchy
you do have settings>forums Allow forum wide search enabled and no CSS hiding the search form
maybe using a customized wordpress theme could remove the search bar too.
i just tested it out and it seems to work fine.
you can find the files to install for wp-content/languages/bbPress here
http://danieljuhl.dk/wordpress/oversaettelse/
more information specifically for your language
https://codex.bbpress.org/bbpress-in-your-language/danish-dansk-da_dk/
i suggest going to http://jobs.wordpress.net/ post a job , and then a developer can custom develop this for you.
I am adding a member forum section to a church website. It is just for congregation members to communicate with each other once logged in. The board wants only one main forum in which all topics will be listed/added. I have added the (bbPress) Forums List to the sidebar widget area, but it does not show up. When I log in, I see “member login” with my user name and below that “recent topics” with all topics listed in the right sidebar. The “forum List” does not appear at all, making it very confusing to navigate the topic threads. I don’t know css and am totally lost here, so please be kind and very specific with your help. 🙂
My WordPress version is 4.1.1 and we are using the “Risen” Theme.
bbPress version is 2.5.4, I am also using bbl style pack and bbPress WP Tweaks 1.3.1
the site is http://www.uugrassvalley.org
i suggest you go to http://jobs.wordpress.net/ poast a job and let a developer create this for you.
i suggest going to http://jobs.wordpress.net/ and post a job and see if a developer can do this for you
you can see if any of the unread posts plugin add a body class to the replies to use.
Feature Plugins Tracking
other than that i suggest maybe https://wordpress.org/plugins/bbpress-new-topics/
@giuseppecuttone
i dont know any plugin that can handle notifications very well , all i know is the default bbpress notifications and they seem to be having issues for users lately.
as for changing the default email address see if this works
use this for custom email address
add_filter( 'wp_mail_from', function( $email ) {
return 'webmaster@mydomainname.com';
});
use this for custom from name
add_filter( 'wp_mail_from_name', function( $name ) {
return 'WordPress Email System';
});
What does it say? It is a simple wordpress site (the url I sent). The root site is basic css and html. I receive no errors other than the one I’m seeking help with. Can someone else look at this topic and help me out? Thank you.
@kiwi3685
what importer did you use , the one listed in tools>forums Import??
because i see the bbPress one doesnt have much information in the codex and it is still in beta testing.
this could work or not , im only guessing to try to help
what you could try is go to tools>forums Repair forums and check
Remap existing users to default forum roles
and see if that fixes it.
there is also a ticket on the importer for SMF
https://bbpress.trac.wordpress.org/ticket/2380
either add this to your functions file
add_filter('protected_title_format', 'ntwb_remove_protected_title');
function ntwb_remove_protected_title($title) {
return '%s';
}
add_filter('private_title_format', 'ntwb_remove_private_title');
function ntwb_remove_private_title($title) {
return '%s';
}
or use
https://wordpress.org/support/plugin/bbp-style-pack