Published on March 27th, 2016 by erikture
Hello!
I am planing to install bbPress on my site running the latest version of WordPress.
However I have a rather “strange” requirement.
On the site we have a private part where the users logs in with username and password.
The problem is that all users use the same username. We have tried to give each member an individual username but without any success. They will not remember their username or password. The information on the protected part is not personalized so it is not accturally a problem that they use the same username.
My problem is that when they then post to bbPress all users will post as this generic user. Is it possible to force the anonymous posting layout even for logged in users? This will force them to enter their name and emailadress and we can figure out who has posted what.
/Erik
Published on March 26th, 2016 by chaya579
i’m used with Content Aware Sidebars to create dynamic sidebars but its not work for bbpress form.
how can i add specific to bbpress forms?
tried to add code to bbpress.php and to sidebar.php but still can not add sidebars on bbpress.
thanks
Published on March 26th, 2016 by alfio8788
Hello everyone,
After a fight with vbulletin and mysql i was able to (partially) import our vbulletin forum to bbpress (an estimated import time was 12 days for a full import, we decided to run such a task only for the last import that will go live) but sadly the import is totally out of sync resulting in this kind of problems:
1) Threads are posted by the wrong user
2) Replies are posted with the wrong user
3) Links to user profiles randomly missing (but possible to load by requesting the profile right away from URL)
Repairs after import were executed (with the exception of bbp-sync-all-reply-positions, it always times out even if the php execution time is set to insanely high values such as 3000 seconds).
If this is caused by the interruption of the import process just let me know right away and we will create a copy of the vbulletin database and keep a smaller set of data for our tests and then import everything once our testing is done.
Published on March 26th, 2016 by bj87
Hey, my name is Johan.
I just wondering how to put the postbox on top of the forum, because we have reverse forum that you se the latest post first and not last.
So i want to have the post box on top. is this possible?
Where/or how do i fix that?
I use bbPress 2.5.8 version.
Thanks in advance!
/ Johan
Published on March 26th, 2016 by dalemiles
Hey guys.
I’ve tried searching about this but not really been able to find a definitive answer, especially for my own situation.
I currently have a live site, where users NEED to use WordPress default domain.com/author/username
Currently when you go to the profile of a poster in the bbPress forum it takes you to a different user page domain.com/user/username
I need this to direct to domain.com/author/username as the default WordPress profile contains information about the user (feedback ratings, post details + more – its a classified site).
Now I’m not 100% fussed on whether the domain.com/author/username page displays post details, as the ‘forum’ I’ve having is a single forum and more like a general chat area of the site. I’m not looking to setup a fully fledged forum.
However the most important thing is having their profiles direct to their author page instead of their bbPress user page.
If there is code I can place in the author.php file (WordPress one) that will check their bbPress details regarding their posts, that would be great. I’ve tried copying the code from bbPress user-profile.php but that didn’t work.
Can any one offer any assistance? I’d deeply appreciate it.
Thanks
bbPress: Version 2.5.8
WordPress: Version 4.4.2
Website: www.airsofttrader.co.nz (You can see the example of author pages, however bbPress is not installed on the live site – its installed locally.)
Published on March 26th, 2016 by spham15
Hello interwebs, I just made my wordpress site. I’m looking to add a forum on the site, but I’m not pleased with the theme that I got, so I’m looking to change it. I would like to make a forum attached to my site that looks like this. http://forums.a10talk.com/
ps I’m not very tech savy so if I left anything out let me know
Thanks
Published on March 26th, 2016 by migno
Sup guys,
im currently working on a WordPress based Gaming-Theme and want to change a few of BBpress Templates.
Unfortunatly bbpress dont like the take the changes and always falls back to the default ones.
My Theme folder looks like this:
%mythemename%/bbpress/%template_files_here%
but everything i change here wont update…
So, im a doing something wrong with the bbpress folder there or is it just my dumbness ?
Published on March 25th, 2016 by tech55541
Hello,
I am starting a new thread because all the searches I found come up 1-5 years old and I do not trust some of the code when I do not know how to read it very well.
I would like to allow participants to be able to trash (not delete) their replies and posts if they are still allowed to edit them based on the edit time provided in BBPress settings. Can you please give me some code to achieve this?
Thanks.
Published on March 25th, 2016 by lylpowerpuffgirl
hey all,
Could someone please help me integrate bbpress forums with ultimate member. Ultimate member is a perfect plugin for members but it does not have forums so I wanted to use bbpress’ forums! Is there anyone here who is familiar with this? How can I do that?
Thanks a lot!
Published on March 25th, 2016 by stewmills
I have:
WP 4.4.2
bbPress 2.5.8
BuddyPress 2.4.3
Karma theme 3.0.3
Please see my forum home page here: www.cytoviva.com/userforum/
What I want to do is hide the “white area” with the logo and menu (products, gallery, etc.) ONLY on bbpress forum pages, not the rest of the non-forum pages. Here is the code for my bbPress.php page created from copying another template page and saving it in my child theme (as instructed).
Can anyone tell me what to edit/remove from this page to just remove the home menu, but LEAVE the main top menu (home, about us, client sites) in blue?
I have tried several things and can’t seem to get anywhere.
Thanks in advance!!!
<?php
/*
Template Name: bbPress
*/
?>
<?php get_header(); ?>
</div><!-- header-area -->
</div><!-- end rays -->
</div><!-- end header-holder -->
</div><!-- end header -->
<?php truethemes_before_main_hook();// action hook, see truethemes_framework/global/hooks.php ?>
<div id="main">
<?php get_template_part('theme-template-part-tools','childtheme'); ?>
<div class="main-holder">
<?php
//retrieve value for sub-nav checkbox
global $post;
$post_id = $post->ID;
$meta_value = get_post_meta($post_id,'truethemes_page_checkbox',true);
if(empty($meta_value)){
get_template_part('theme-template-part-subnav-horizontal','childtheme');
}
?>
<div id="content" class="content_left_sidebar">
<?php if(have_posts()) : while(have_posts()) : the_post(); the_content(); truethemes_link_pages(); endwhile; endif;
comments_template('/page-comments.php', true);
get_template_part('theme-template-part-inline-editing','childtheme'); ?>
</div><!-- end content -->
<div id="sidebar" class="left_sidebar">
<?php dynamic_sidebar('bbpress-custom-sidebar'); ?>
</div><!-- end sidebar -->
</div><!-- end main-holder -->
</div><!-- main-area -->
<?php get_footer(); ?>