I have been using WordPress for a while. I was introduced to BB Press but am having a time getting it set up. What in the world is The complete URL of the front page of your bbPress forums? Where do I get itfrom?
The complete URL of the front page of your bbPress forums?
Published on February 2nd, 2011 by SCRichardSingle login error – "Multiple user_login matches"
Published on February 2nd, 2011 by shawn2I have setup bbpress with deep integration and single signin. I am running a wp network site. I have mapped all of the keys => bb_keys / salts as well as defined the cookiepath. When I login to wp I am not logged in to bbpress.
When I try to login to bbpress (logged in OR out of wp) i receive this error: Multiple user_login matches
I have traced it down to this call:
‘includes/functions.bb.pluggable’:
bb_check_login(){
$user = $wp_users_object->get_user( $user, array( ‘by’ => ‘login’ ) );
Also I cannot access /bb/bb-admin as it redirects me back to /bb/
I have read through many posts on this subject, though I have not seen this error posted anywhere.
Any help would be greatly appreciated!
Shawn
Need Assist
Published on February 2nd, 2011 by rbe2004I’m in need of a bbPress consultant/programmer to assist with our set-up on an ongoing basis. Can anyone recommend someone with experience?
Richard
Garbled Forum with Deep Integration – HELP!
Published on February 2nd, 2011 by jjack1Hi,
I’ve been working on integrating bbpress into my WP site (blog), and have just completed the deep integration between the two (i.e. changing the old ‘get header’ tags in all the template files, etc). However, the forum portion of my forum page is all messed up. I assume that it has something to do with the style.css file somewhere? I’m just guessing though.
I’ve searched for, found, and tried literally dozens of different resources to try and figure out what’s wrong but I’m just not finding any help.
All I’m looking to do is basically create a bbpress forum that looks the same as my WP pages. I’ve got the look and feel of my WP pages into the bbpress forum, but the actual forum part is just messed up. Can someone help me out??
My website is http://www.edcreviews.com
The forum page is http://www.edcreviews.com/forum
Thanks!
Are there any simple good looking themes thats better coded than Kakumei?
Published on February 2nd, 2011 by RamiuzI´ve modifyed Kakumei to the limit of my knowledge. See yourself at www.michaeljackson.no/forum
However, if I want to turn it into something different, I think the CSS is kind of clumsy made.
If you change width on one thing – you have to change it on something like ten other definitions too. Width of content, background, padding, corners etc etc.
So is there some other simplistic theme out there thats coded in a more unified way? Let´s say I want to change the size of the forum, I only want to input this ONCE, and have everything else fall in place automatically.
I know this is possible with CSS, by using percentage in sizes, instead of static pixel definitions.
Where can I find more BBPress themes anyway?
Not sending to all mail
Published on February 2nd, 2011 by kprimdalHi,
I have a problem that the mail dont get through. If I register a new user with a gmail account no problem. But if I use own domains it does not work, I have tried 2 different with some problem, anyone expierence the same ?
Not allowed to read posts without being logged in?
Published on February 2nd, 2011 by lespionageIs there any way to arrange so that when a user is trying to access the forum he is greeted with a login form so that he can not read posts without being logged in?
Re-arrange or re-order Forums
Published on February 2nd, 2011 byIs there a way to change the order the forums are displayed? For example right now I know if I create a new forum it is automatically displayed below the rest, but what if I want it to be at the TOP instead?
Bbpress Latest Discussion – latin
Published on February 1st, 2011 by lespionagei just installed the BBpress Latest Discussion plugin on my wordpress site and it’s great. The only problem is that the plugin excludes ÅÄ and Ö witch is a problem because most of the visitors are Swedish. Does any one know how to make this plugin allow latin characters or are there any other way to display latest post and author on my wordpress frontpage?
Grateful for an answer.
RSS Feed Issues
Published on February 1st, 2011 by WizenOakHey guys,
I’m currently putting together my first site using WordPress % bbPress (they are both linked etc).
What i’m trying to do is display the 4 most recent active threads. By this, i do not mean the last 5 posts. I mean the latest 5 threads that have posts made in them. I hope that makes sense.
E.g.
[Thread Title] by [Original Poster]
I came across a script which links my bbPress RSS feed to my WordPress custom template, here it is:
<?php if(function_exists('fetch_feed')) {
include_once(ABSPATH.WPINC.'/feed.php');
$feed = fetch_feed('http://localhost/wordpress/bbpress/rss.php?forum=1');
$limit = $feed->get_item_quantity(4);
$items = $feed->get_items(0, $limit);
}
if ($limit == 0) echo '';
else foreach ($items as $item) : ?>
<ul class="latest">
<li>
<span class="title"><?php echo $item->get_title(); ?></span>
</li>
<?php endforeach; ?>
I tried linking to “http://localhost/wordpress/bbpress/rss” etc but “http://localhost/wordpress/bbpress/rss.php?forum=1” was the only feed i could pick up. It doesn’t really matter though considering i’ll only have the single forum section anyway.
Now, this produces the following on my WordPress template:
Tigeran on “Your first topic”
[Last Post Author] on [Thread Title]
As stated before, i want it to appear like this:
[Thread Title] by [Original Poster]
I soon found out that i needed to edit the rss2.php file located in bbpressbb-templateskakumei folder as i’m using this template. Looking through it i came across this:
<title><?php post_author(); ?> <?php _e('on')?> "<?php topic_title( $bb_post->topic_id ); ?>"</title>
& changed it to this:
<title><?php topic_title( $bb_post->topic_id ); ?> <?php _e('by')?> <?php post_author(); ?></title>
But there is no change as it stays as the original. It’s like i cannot overwrite this file. Any help would be greatly appreciated.
Thanks.