Hi. I want to use admin and member forums.
So I want to create a forum where writing only admins, and a forum when writing all members.
How to I do? I need use a plugin? What’s the plugin’s name?
Hi. I want to use admin and member forums.
So I want to create a forum where writing only admins, and a forum when writing all members.
How to I do? I need use a plugin? What’s the plugin’s name?
Hello, I’m a little frustrated. I have installed the BP plugin for WP and it is wonderful but the fact that Forums are tied to groups and their use is very limited compared to a standalone installation is “crappy” to say the least.
After trying out the new bbPress installation and not liking it at all, I decided to uninstall it by deleting all of its files from the directory and drop all the bp_bb_ database tables. I now have a new problem:
I downloaded bbPress to set up a standalone install and integrate it to WP. When I install it and follow the directions, everything gets installed properly, including new database “bb_” tables, but I am redirected to login at “wp-content/plugins/buddypress/bp-forums/bbpress/bb-login.php” instead of “forum/bb-login.php.” I can go to mysite.com/forum and I’ll see the login fields on the top of the page and a “Page not found! I’m sorry, but there is nothing at this URL.” error. When I log in I am taken to “mysite.com/wp-content/plugins/buddypress/bp-forums/bbpress/bb-login.php” with a very much BLANK page.
I assume this is a config.php error but I’m all out of ideas. Help :’( Thank you
Wow, why is this happening? Do any of you have the same problem? Phpbb has a feature where you have to approve a member’s registration before they become members. Does Bbpress have something similar?
Also, my akismet is not activated. I am using WordPress MU, the Buddypress Magazine theme. They are somewhat integrated. However, when a user signs up via the bbpress forums and not on the main page of the website which is WPMU, that user will not show up in dashboard of the WPMU, only the bbpress listing of users.
If I activate Akismet, will I kill my site?
-j
Can I get rid of Latest Discussions from the dashboard?
Thanks
has written a Thesis port for bbPress?
Thanks.
Could someone point me to the correct file, in which to edit the freshness? I’d like to abbreviate these words, to keep my layout from breaking a bit. Thanks!
Hello People,
I’ve made a deep integration of Bbpress into my WordPress blog as you can see at www.escoladinheiro.com/forums but i’m getting a very big problem. I can’t make page/post title to appear as my bbpress topic/posts titles. I’ve searched for about 8h on google and i didn’t found any solution for this. There’s anyone that can help me define this titles?
I’m using the header and footer of my main WordPress blog. There’s any way i can define that if the page/post is from bbpress, it’ll call the page title from bbpress? With this mess, i can’t even make a sitemap for the forum 
If anyone can share some sort of code to implement on my wordpress for fixing this, i really appreciate. If needed, i can pay for the work.
Thanks in advance.
Paulo
I have a theme and the latest topics appear on the front page before the forums list.
I want the forums list to appear before
This is the front page PHP – Any help is greatly appreciated – thanks
<?php bb_get_header(); ?>
<?php if ( $forums ) : ?>
<div id=”hottags” role=”main”>
<h2><?php _e(‘Hot Tags’); ?></h2>
<p class=”frontpageheatmap”><?php bb_tag_heat_map(); ?></p>
<h2><?php _e(‘Freebies Updates’); ?></h2>
<script type=”text/javascript” src=”http://signup.ymlp.com/signup.js?id=geuswjjgmguw”></script>
<br >
<script type=”text/javascript”><!–
google_ad_client = “pub-0827570622639205”;
/* freebie forum side */
google_ad_slot = “5398224595”;
google_ad_width = 120;
google_ad_height = 240;
//–>
</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script>
</div>
<div id=”discussions”>
<?php if ( $topics || $super_stickies ) : ?>
<h2><?php _e(‘Latest Discussions’); ?></h2>
<table id=”latest”>
<tr>
<th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<!– <th><?php _e(‘Voices’); ?></th> –>
<th><?php _e(‘Last Poster’); ?></th>
<th><?php _e(‘Freshness’); ?></th>
</tr>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big><?php topic_page_links(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<!– <td class=”num”><?php bb_topic_voices(); ?></td> –>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> “><?php topic_title(); ?><?php topic_page_links(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<!– <td class=”num”><?php bb_topic_voices(); ?></td> –>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
<?php bb_latest_topics_pages( array( ‘before’ => ‘<div class=”nav”>’, ‘after’ => ‘</div>’ ) ); ?>
<?php endif; // $topics or $super_stickies ?>
<?php if ( bb_forums() ) : ?>
<h2><?php _e(‘Forums’); ?></h2>
<table id=”forumlist”>
<tr>
<th><?php _e(‘Main Theme’); ?></th>
<th><?php _e(‘Topics’); ?></th>
<th><?php _e(‘Posts’); ?></th>
</tr>
<?php while ( bb_forum() ) : ?>
<?php if (bb_get_forum_is_category()) : ?>
<tr<?php bb_forum_class(‘bb-category’); ?>>
<td colspan=”3″><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>
</tr>
<?php continue; endif; ?>
<tr<?php bb_forum_class(); ?>>
<td><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>
<td class=”num”><?php forum_topics(); ?></td>
<td class=”num”><?php forum_posts(); ?></td>
</tr>
<?php endwhile; ?>
</table>
<?php endif; // bb_forums() ?>
<?php if ( bb_is_user_logged_in() ) : ?>
<div id=”viewdiv”>
<ul id=”views”>
<?php foreach ( bb_get_views() as $the_view => $title ) : ?>
<li class=”view”>“><?php view_name( $the_view ); ?>
<?php endforeach; ?>
</div>
<?php endif; // bb_is_user_logged_in() ?>
</div>
<?php else : // $forums ?>
<div class=”bbcrumb”>“><?php bb_option(‘name’); ?> » <?php _e(‘Add New Topic’); ?></div>
<?php post_form(); endif; // $forums ?>
<?php bb_get_footer(); ?>
all my subscribers facing pathetic situation with this ..
every update mail taking 30 mins to reach their mail boxes …once they signed up they have to wait for email of password info .
how to solve this problem
please help me on this
Release Page:
http://bbterminal.net/terrafirma-two/
This theme is based on a design by freecsstemplates.org.
More themes on the way!