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.
I installed bbPress as a plugin on WP 4.1 MultiSite – on one sub-site. 2014 Theme. Plugin: https://wordpress.org/plugins/super-socializer/
I am new to bbPress and user login.
I am using a plugin called Super Socializer for that site login, for commenting etc. I don’t want a separate bbPress login. I want bbPress to be open to whomever logs into the site.
If I leave bbPress set “open” – no registration – how do I restrict bbPress participation to registered/logged in site users?
I would like access for reading Forums to be open to anyone, like the site. But login for writing.
Sorry if this is a super stupid question – please be patient. Even helpful? 🙂
Thank you.
There is a way to make a section of the forum this plugin?
Thank You
Hi,
I’m in the process of migrating to vanilla forums using the vanilla porter, but am having problems. I realize this seems like more of question to as those guys, however, the issue seems to be that bbpress is on a shared database as WordPress. Basically what I think is happening is, it’s trying to convert my entire site (WordPress included) rather than just my forum. I get an error saying the porter could not find .forum (I think this is talking about a table?). What I probably need to do is either seperate bbpress as its own database, or create a table for what it’s wanting from me. What do yall think?