You could try this plugin (I didn’t test it though):
https://wordpress.org/extend/plugins/sidebar-login/
Hello,
Please let me know if there is a way to customize “bbpress login widget” (the default widget when you install bbpress 2.0 plugin) to redirect to current page when logging in? The current setup is that no matter what page you are in, you will be redirected to the front page.
How do i know that it is ready?
I am sorry to ask this question
Hi,
I have managed to install the Bavatars Plugin on my bbpress installation (version 1.0.3).
I can see that the plugin has created the avatars folder in the bbpress root and the permissions are set to 777.
The problem I am getting is that when go through and I click on “Upload new avatar”, the page goes blank and the avatar does not update.
Has anyone seen this issue before or has a fix?
Thanks in advance for any help.
Wil
Can you please elaborate on the partial BP 1.3 and bbpress 2.0 compatibility?
How will they be integrated?
I imagine I’m in the minority, as most BP users seem to prefer having separate group forums appear under each group, but I’d like a more traditional unified forum where you can see the user’s group along with their title in posts, and perhaps have restricted access to sub-forums for groups.
Is that possible?
I just installed bbpress and created my first forum. However, when I click view I get this:
Page Not Found
The page you tried to access does not exist on this server. This page may not exist due to the following reasons:
You are the owner of this web site and you have not uploaded (or incorrectly uploaded) your web site. For information on uploading your web site using FTP client software or web design software, click here for FTP Upload Information.
The URL that you have entered in your browser is incorrect. Please re-enter the URL and try again.
The Link that you clicked on incorrectly points to this page. Please contact the owner of this web site to inform them of this situation.
Hi I am looking for a plugin which will let users to hide part of the post content from other users. The data would be visible only for the author and admins. I use bbpress as support forum and I sometimes clients want to post info like server login or smth. Do you know any plugin which can do this?
master5o1 thanks for responding.
Ill give ur plugin a shot.
I only get that in a specific case, I don’t know if it’s related:
How do you make a "Private" forum visible to some WordPress classes?
JJJ? Any ideas?
i can use wordpress to use this forum. my site is coded from scratch. except for the forums. i use phpbb. i like the layout sequence of this forum and wanted to use it. but i can probably just edit the phpbb code myself to get the results i want.
spambots on an official site promoting a service rubs me the wrong way and is a turn off
PS: I’m thinking of having it check for youtube links that are not inside the shortcode, also. But I’ll get to that when I can be bothered.
I’m using bbPress plugin for WP. When I’m logged in, I have no problem seeing topics in my forum. But if I log out, I can still see the topics listed in the forum, but if I click on one, I get the 404 error, and there’s no place to log in. I’ve had some visitors to the site tell me they get the same results. What am I doing wrong? I’m running the very latest WP version (3.2).
http://mountaineersphotography.org/forums/forum/member-bulletin-board/
My post toolbar plugin handles youtube by way of shortcode [youtube]link[/youtube].
https://wordpress.org/extend/plugins/bbpress-post-toolbar/
I also will have the same problem when I upgrade my site in that the old posts will just be links to the video, rather than embedding them. Personally I don’t see a problem here though
Anyone know where to find a plugin that automatically embeds videos based on their links?
ie. Post a youtube URL and bam it’s automatically embedded for you?
On the old standalone bbPress 1.x this one was great: http://bbpress.org/plugins/topic/bbvideo/
I cannot find anything like it for use with bbPress 2.0
Thank you!
guys and gals….
bbpress is dope, im sure we all agree!
i want your oppinions… what do you think is the best combination or best way to build this if i have:
– a gaming blog == http://vglounge.com
– want to build a good forum that integrates well
i was thinking this (all criticism welcome):
– standalone forum (http://forum.vglounge.com)
– i wanted to do something similar to this forum, including the avatar look.
– i also wanted to connect the buddypress and possibly have facebook connect
what do you guys think?
thanks
_Leo
i was afraid that would be the answer! thanks Tom
Ok I see, just read something which solved my problem..
“BuddyPress allows you to install a forked version of bbPress. It is not the same as this bbPress.”
I was getting stumped on the fact the integrated version didnt have admin menus like the standalone bbpress does..
Ok I see, just read something which solved my problem..
“BuddyPress allows you to install a forked version of bbPress. It is not the same as this bbPress.”
I was getting stumped on the fact the integrated version didnt have admin menus like the standalone bbpress does..
BuddyPress is not compatible with the bbPress plugin yet. (You can BuddyPress and bbPress perfectly alongside eachother though, just disable the forum components of BuddyPress).
A new version of BuddyPress is coming out soon (JJJ said so, that’s why they’re working on buddypress.org this week) and I think that one will be compatible with the plugin.
BuddyPress is not compatible with the bbPress plugin yet. (You can BuddyPress and bbPress perfectly alongside eachother though, just disable the forum components of BuddyPress).
A new version of BuddyPress is coming out soon (JJJ said so, that’s why they’re working on buddypress.org this week) and I think that one will be compatible with the plugin.
Hey pcgs51,
Having a similar issue, I installed Buddypress and opted for forum integration with bbpress but also askes for bb config file path which I haven’t got? any clues? Thanks
Hey pcgs51,
Having a similar issue, I installed Buddypress and opted for forum integration with bbpress but also askes for bb config file path which I haven’t got? any clues? Thanks
I didn’t test these myself, but in the bbp-core-shortcodes.php file (of RC1 from the trac) it states the following shortcodes:
[bbp-login][
[bbp-register]
[bbp-lost-pass]
So those might work.
is there a shortcode for user registration and login?
I run a combination of bbPress & Buddypress and this worked for me, I did put the following code in functions.php:
function disable_all_widgets( $sidebars_widgets ) {
if (is_bbpress()) {
$sidebars_widgets = array(false);
remove_all_actions('bp_register_widgets');
unregister_sidebar( 'bp_core_widgets' );
}
return $sidebars_widgets;
}
add_filter( ‘sidebars_widgets’, ‘disable_all_widgets’, 1, 1);
This removed all widgets aside from the user login, but that’s quite handy to be present at the forum pages. I put that on top of the forums with CSS.