hmmm thats weird
hopefully while your trying to fix it , you didn’t do more harm than good.
heres a list of things you can do
contact your hosting providers support
see if they can find any issues you might have if you installed an SSL certificate or any other issues that might cause it like a CDN setup or such in their environment but im only guessing.
post a topic here https://wordpress.org/support/forum/installation
im saying post a topic here because I don’t know much about this kind of issue , and im sure the people at their support team can help. I just know some stuff about bbPress and some stuff in WordPress to get by, like I said it’s highly unlikely that bbPress or BuddyPress could cause the issue im not ruling it out but its highly unlikely.
if your site is a live site do a scan also at sitecheck.sucuri.net
do a scan just in case something bad might of happened.
you can also wait until someone else picks up the topic from here and give you any other additional information.
I haven’t found a plugin with that kind of functionality
you can create a sticky topic on your site, with guidelines , rules , and stuff to know about like whats the limit you held for editing a post.
other than that this kind of functionality seems kind of fancy so maybe some custom development is needed. go to http://jobs.wordpress.net/ and post a job.
I have renamed the plugins folder and i dont even get the wordpress login screen, its just going to my site ans saying
Sorry! That page doesn’t seem to exist.
@editor-mike
you can try it , if it doesnt work deactivate it/uninstall it.
if it doesnt work then you might need some custom development
post a job at http://wordpress.net
mention that plugin though say that you just need an updated/customized to all your needs version of that plugin.
Hi
I have installed buddypress and then bbpress.
I created to users in another browser. I then logged out of the my wordpress site and when went back to loggin it wont allow me to. It will only accept the users i created for the buddypress site.
Now i am unable to login to wordpress ay help appriciated??
i found this, i havent tested it though with the latest version of bbPress and WordPress though.
https://wordpress.org/plugins/bbpress-ignore-user/
maybe this plugin will work , only works without BuddyPress installed though
https://wordpress.org/plugins/bbpress-members-only/
i dont know about force but you could use this plugin https://wordpress.org/plugins/wp-user-avatar/
then make a default avatar something ridiculous or a bland picture so they would want to change their avatar to not see their default avatar.
also just found this plugin too , havent tested though.
https://wordpress.org/plugins/bbpress-protected-forums/
Thanks, @Robkk I didn’t know how to use that – I didn’t realize it was as easy as adding it to my functions file.
Thanks for the addition @undergroundnetwork!
Since I posted I’ve been using this outdated-but-it-works plug-in.
https://wordpress.org/plugins/search-bbpress/
Although that plug-in, works, it also displays shows links to slides that I have on the homepage in the results – not a big deal as I don’t have too many slides but I’d rather that not happen.
In an effort to reduce plug-ins I’m going to give this code a shot.
Ciao,
L
I’ve added to the code as the above code does not search for Forum Titles, this code includes titles in the search as well:
/**
* Include bbPress 'topic' custom post type in WordPress' search results */
function ntwb_bbp_topic_cpt_search( $topic_search ) {
$topic_search['exclude_from_search'] = false;
return $topic_search;
}
add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
/**
* Include bbPress 'forum' custom post type in WordPress' search results */
function ntwb_bbp_forum_cpt_search( $forum_search ) {
$forum_search['exclude_from_search'] = false;
return $forum_search;
}
add_filter( 'bbp_register_forum_post_type', 'ntwb_bbp_forum_cpt_search' );
/**
* Include bbPress 'reply' custom post type in WordPress' search results */
function ntwb_bbp_reply_cpt_search( $reply_search ) {
$reply_search['exclude_from_search'] = false;
return $reply_search;
}
add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
@sceko
just checked and this plugin https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
shows the visual editor in the edit page too.
if you still have issues reply back.
try posting a job at http://jobs.wordpress.net/
or other freelance development sites like codible.com
contact the plugin author about maybe improving it for other kinds of attachments.
other than that, http://jobs.wordpress.net/
@melanie-bund
this is kind of complicated to me , im going to say this is custom development.
try to figure it out yourself or hire another developer at http://jobs.wordpress.net/.
or wait and see if someone else picks up this topic.
no it isn’t a default, I have a plugin that does this
https://wordpress.org/plugins/bbp-topic-count/
what other plugins are you using?
I have the current version of bbspress and wordpress.
Most of my topics do not save, it brings back to a blank create a topic page. I have been able to save a couple of with very little text.
I have tried 2012 and 2014 themes and deactivated all other plugins.
If I add via the admin side and not the user interface it seems to work fine.
Anyone have suggestions? Thanks.
ok, the function needs the existence of a variable called $user_id (being the wordpress usreid of the profile user.
How/where are you adding this code?
Hi
I’ve WordPress, latest version.
I installed BBPress.
Worked fine.
Installed ssl and connected it to my hosting.
Works fine.
Except BBpress suddenly returns 404’s.
I can find a few things on Google about this topic, but none seem to work.
Can anyone here help me out please to get BBpress working with SSL?
Thanks in advance.
bbPress 2.x uses WordPress’s posts and taxonomy structure to store everything, so the best(only) way to have it exist on a separate database (and/or server) is with WordPress multisite and HyperDB, and having bbPress activated on the site you’ve pointed to it’s own location.
I added a few user capabilities plugins to edit roles but none have done the trick.
This likely did more harm than good.
Try installing the following plugin (by me) which provides a nice user-interface for identifying where your bbPress roles and capabilities have gone wrong:
https://wordpress.org/plugins/bbp-capabilities/
This plugin was originally a hidden tool tucked into bbPress, but was extracted into a plugin once we went with dynamic role registration.
The thing with bbPress roles, is that they work amazingly well for the large majority of installations. For the very small minority that want to deeply integrate it with other plugins or services, it works a bit differently than WordPress’s native roles and capabilities (for the better, to be frank) which requires a bit of special handling.