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” ); } ?>
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?
Is it possible to call bbpress from a page in wordpress?
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)
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
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.
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!
How do I make Latest Discussion on it’s own page?
if (bb_get_forum_is_category())
That’s if forum is category, how do I write if it’s not a category?
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.