I’m trying to install a new bbPress forum at http://forums.morganwick.com. The “wrapper” div is set in style.css (the only file I’ve changed) to have position:static. It appears to be absolutely positioned, and I don’t see anything in either style.css or in the code that appears when I “view source” that would overrule style.css (the only places in style.css where anything is absolutely positioned either have “display” set to “none” or don’t appear on all pages) unless I have to go hunting through JavaScript. Having to deal with absolutely positioned elements is a pain for an amateur developer like me, and I’d much rather have elements appear as part of the normal flow, like I can do in WordPress; what’s the problem here?
UPDATE: I just removed the background image from “wrapper” and added it to “header”, but it doesn’t show up at all. I’m trying to make it look as much like http://www.morganwick.com as possible.
I’m trying to add a link in the header that essentially….whatever username you are logged in under, if you click on a link titled “Member” , it will take you to /members/yourusername
how would I go about doing this? thanks
I’m currently running WPMU and am installing BBPress. Should I use my existing mysql database that I created during WMPU installation or should I create a new database and new user for BBPress.
Also, should I install BBPress Integration prior to installation or after?
Hello
I want remove website ,Location ,Occupation ,Interests In (register)
Help me
Hello, everyone.
I would like to know if there is any P2 or looking-like-P2 theme available out there. If not, is anyone working on one?
Otherwise, does anyone know a theme which goes well with WordPress P2 theme?
For your reference: http://p2theme.com/
Thanks !!
Hi – I’d using bbpress within WordPress and would like to password protect some forums or topics, but not all. Is there a way to do this?
http://unitedfrontmn.org/forums/
I have tried integrating with my WP several times and triple checked my bb-config.php. IT’S ALL RIGHT. Here is the error I am receiving (replaced URL with XXXXX’s):
Warning: require_once(/home/content/r/o/b/robe489/html/StealthEmployed/forum/bb-includes/backpress/class.bp-log.php) [function.require-once]: failed to open stream: No such file or directory in /XXXXX/StealthEmployed/forum/bb-settings.php on line 107
Fatal error: require_once() [function.require]: Failed opening required ‘/XXXXX/StealthEmployed/forum/bb-includes/backpress/class.bp-log.php’ (include_path=’.:/usr/local/php5/lib/php’) in /XXXXX/StealthEmployed/forum/bb-settings.php on line 107
I tried adding PHP5 support to .htaccess and that didn’t do anything. Changed my cookie settings on WP and BB side to match twice. Please help!
The following is the log of the install.
Referrer is OK, beginning installation…
>>> Setting up custom user table constants
Step 1 – Creating database tables
>>> Modifying database: ******
>>>>>> Table: bb_forums
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_meta
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_posts
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_terms
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_term_relationships
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_term_taxonomy
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_topics
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
Step 2 – WordPress integration (optional)
>>> WordPress address (URL): ***
>>> Blog address (URL): ***
>>> WordPress cookie keys set.
>>> WordPress “auth” cookie salt set from input.
>>> WordPress “logged in” cookie salt set from input.
>>> Fetching missing WordPress cookie salts.
>>>>>> WordPress “secure auth” cookie salt not set.
>>> User database table prefix: wp_
>>> User database name: ***
>>> User database user: ***
>>> User database password: ***
>>> User database host: ***
>>> User database character set: utf8
Step 3 – Site settings
>>> Site name: ***
>>> Site address (URL): ***
>>> From email address: ***
>>> Key master role assigned to existing user
>>>>>> Username: ***
>>>>>> Email address: ***
>>>>>> Password: Your existing password
>>> Description: Just another bbPress community
>>> Forum could not be created!
>>> Key master email sent
There were some errors encountered during installation!
http://storeeboard.com is my new site using bbPress. The site is not a forum as such, it is used more as a game.
I’ve modified the kakumei theme and really simplified and cleaned up the whole look.
I hope you like the look of it…
I’m trying to show the last ten posts in my sidebar, but I am not entirely succeeding, what am I doing wrong? I thought I’d just need to adjust the code from latest discussion a bit. Obviously it doesn’t work like that.
<table class="recent_posts" cellspacing="0" width="100%">
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></td>
<td><small><a href="<?php topic_last_post_link(); ?>"><?php topic_time(); ?></a></small></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
So how can I call the latest ten posts in the sidebar?