Skip to:
Content
Pages
Categories
Search
Top
Bottom

Put PHP together

Published on April 16th, 2010 by Alifar

Hi there,

Does anyone know how i can put the below 3 PHP lines together wrapped in 1 line with less tags?

<?php if (is_front() && $page>1) {echo(” page $page” ); } ?>

<?php if (is_topic() && $page>1) {echo(” page $page” ); } ?>

<?php if (is_forum() && $page>1) {echo(” page $page” ); } ?>

How to make bbpress act like http://answers.37signals.com/basecamp ?

Published on April 16th, 2010 by

I really like how 37signals made their simplified Q&A site:

http://answers.37signals.com/basecamp

In review, it occurred to me that it’s essentially just a forum site with a few specific functions that make it act more like a Question & Answer site.

Does anyone know how I can mimic 37signals simplified Q&A implementation using bbPress?

Page integration

Published on April 15th, 2010 by

Is it possible to call bbpress from a page in wordpress?

User Role Map

Published on April 15th, 2010 by

What do I assign for User Role Maps in bbpress wordpress integration…

WordPress Administrator: I assume this is Keymaster

But the rest I am unsure of….

WordPress Editor, Author and Contributer: Moderator?

WordPress Subscriber: Member?

Is there a place I can read up on the different roles (Key Master, Adminstrator, Moderator Member)

posts per page setting

Published on April 15th, 2010 by brucini

where can i set how many posts appear on a topic page before another page is added?

i’m sure i’ve altered this before but can’t find the setting in admin

tks in advance

bbPress loop help

Published on April 15th, 2010 by driz

Hi I have the following code:

<?php if ( bb_forums() ) : ?>

<?php while ( bb_forum() ) : ?>

<div class="box">

<?php if (bb_get_forum_is_category()) : ?>

<h3><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a></h3>

<?php continue; endif; ?>

<ol>

<li class="arrow f_unread">
<a href="<?php forum_link(); ?>">
<strong><?php forum_name(); ?></strong><br />
<?php forum_topics(); ?> Topics / <?php forum_posts(); ?> Replies
</a>
</li>

</ol>

</div>

<?php endwhile; ?>

<?php endif; // bb_forums() ?>

Struggling to get it to work how I want which is basically like this:

for each category do this:

<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>

so that div should be repeated for each block. if a set of forums has not category, then all of the code would be above would run but just no h3.

so an example might look like this:

<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>

<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>

<div class="box">
<ol>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>

<div class="box">
<ol>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>

can anyone help thanks.

Password Security – brute force attack

Published on April 15th, 2010 by missie_20

Hi all

Has anyone come across a fix for bbPress inregards to brute force attacks on passwords?

A brute force attack allows a user to attempt to login to the application with a valid user account using a dictionary of words for the password without the account being locked out.

bbPress allows multipul attempts at password entry without locking the user out. This means that someone can use a application to hack into a users account.

Has anyone made a fix/ plugin for this? Or know a way of solving this?

Help/ thoughts would be greatly appreciated! :)

Latest Discussion Page

Published on April 15th, 2010 by gerikg

How do I make Latest Discussion on it’s own page?

If forum is NOT category

Published on April 14th, 2010 by gerikg

if (bb_get_forum_is_category())

That’s if forum is category, how do I write if it’s not a category?

No formatting bar for users?

Published on April 14th, 2010 by Chrjy

Hi all,

Over the last couple of days I have installed bbpress and everything seems pretty cool.

I have just one problem and that is users are unable to see the formatting bar (to add bold lettering, URLs, Images etc) above the posting box.

To explain better I have added an image so you can see what I mean.

http://www.the-ipad-site.com/images/formatting.jpg

Thanks in advance for any help.

Skip to toolbar