Hi!
Can you display the front page latest discussions paged? You show 10 latest discussions and then below links to page 1,2…last
I think I have read something like this in any other thread but I can’t find it using the searcher.
Hi!
Can you display the front page latest discussions paged? You show 10 latest discussions and then below links to page 1,2…last
I think I have read something like this in any other thread but I can’t find it using the searcher.
Is there a plugin that enables you to write code in a post? I know I can use the backtick/code-tag, but the code still looks wrong. I gets a lot of backslash’es. Like in this post:
http://wordpress.dk/forum/topic/187?replies=10#post-1099
We use bbPress for the danish WordPress support forum, so we post code examples quite often, why it is important, that they look right.
Hi,
I am wanting to run two copies of bbpress one for the forums and for a modules directory like this site has. I was wondering if any one could share with me what all would be involved in sharing the registration system? And where I should begin to look?
After integrating wp and bb and having wordpress header, footer and sidebar for both, wp and bb, I have these wordpress functions in my sidebar;
<?php wp_register(”); ?>
<?php wp_loginout(); ?>
<?php wp_meta(); ?>
And in bb press frontpage I have this one;
<?php login_form(); ?>
First, I thought I could replace wp functions in the sidebar for bbpress’ <?php login_form(); ?> but this function it is not defined for wordpress and I have got an error.
Besides there are two other problems;
* if users register through bbpress, their roles are not defined in wordpress
* if I remove wordpress meta functions from the sidebar I lose the link to the admin control panel.
Well, another option would be using the wp functions for login;
<?php wp_register(”); ?>
<?php wp_loginout(); ?>
<?php wp_meta(); ?>
and then changing their beaviour so;
* whenever you login you are not taken to the control panel unless you are the admin
* whenever you are an user and you click in “site admin” link wich appears above the log-out link, you are taken to the bbpress profile.php
My questions are; first of all, do you find any sense in all of this or is it just crap? 
does anybody know where is defined wordpress login meta links so I can change them?
and finally, does anybody have a better idea?
Can anyone tell me how i could limit how many tags get displayed on the front page?
as propose by the sticky topic, I strut my forum :
http://forum.2diabolos.com
I’m proud of the theme
1) for the total integration with the rest of my diabolo site (http://www.2diabolos.com). The post in the forum are shown as comments in each page of my website.
2) for the “profile” page : I created tabs
the integration with my wordpress blog works also, but I don’t want to use that a lot.
I noticed two problems with long user names;
1 they make front page table row to expand. Here in front-page.php
<td class=”num”><?php topic_last_poster(); ?></td>
and the same for syperstickies row (btw, how do you post a sticky thread?
This is a poblem in my template because it is a 800px fixed width.
2 in topic view they make this div ‘.threadauthor’ to expand as well
What do you do to handdle this two issues?
Hi,
I just downloaded BBpress and set it up. It works fine but the theme isn’t applying. Any ideas?
This extremely simple plugin adds a “bb_get_sidebar()” function to bbpress, similar to how WordPress comes with get_sidebar(). Once installed and activated, you can create a file named sidebar.php, put it in your theme directory, and invoke it from any theme page using bb_get_sidebar().
<?php
/*
Plugin Name: Add Sidebar
Plugin Description: adds bb_get_sidebar() to bbpress, similar to WordPress' get_sidebar()
Plugin URI: https://bbpress.org/forums/topic/1264
Plugin Author: Bob Hiler
*/
function bb_get_sidebar() {
bb_load_template( 'sidebar.php' );
}
?>
Please note that this simple plugin doesn’t automagically pull your WordPress sidebar. It’s simply a lightweight convenience function for making bbPress themes. I was surprised this wasn’t already included in template-functions.php, but bb_load_template() makes this super easy to add.
First off let me say IE should be taken out and shot behind the shed. Probably shouldn’t say that living in the land of Microsoft!
So I have a wpmu bbpress install have a 3 column theme set up. The divs in the single sidebar float the first column left, second column right. I finally got it to display correctly by inserting the content div or in this case the ncol div. I had to place the get sidebar and get footer inside the closing div tag and magically Mozilla shows everything correctly.
What a great day 10 minutes into troubleshooting and I fix the problem. However it was incredibly short lived! In IE it displays everything correctly except the sidebar. Instead the sidebar appears on the left side underneath the forum.
I have a regular and ie stylesheet, tried to make sure there weren’t any major discrepencies between the two. There weren’t. Anyone know what I need to do to make it load next to the forum in IE instead of below it?
By the way I have the bbpress styling calling up my wpmu stylesheet. I copied the style divs that bbpress calls from the bb press style sheet and inserted them into the wpmu stylesheet.
I’d offer up an example at the site but I can’t. I have another version of the site running for visitors at the moment.
Hope that made sense! Any help would be appreciated! Thanks.
example of set up:
(front-page)
get header
div ncol
div discussion etc..
/div
get sidebar
get footer
/div