Search Results for 'bbpress'
-
Search Results
-
I would like to edit the design and text of when you log in to bbPress, which says “Welcome, username! Logout.” Where do I edit this? Thanks.
Topic: Remove registration fields
How do I remove some of the fields that are on the registration form? I’m using bbPress for a support forum and it doesn’t make sense to ask people things like their occupation and interests.
I don’t really care if there’s not a plugin to do it (although that’d be nice), but I just can’t find where the profile_info_keys are so that I can edit them.
hi,
just upgraded to wordpress 2.6, and I’m not able to login to my bbpress forum anymore (0.9.0.2). it just reloads the page.
Logging in at the wordpress admin interface is wokring fine.
(cleared cache, cookies,…)
ok, so I added
require_once('path/to/bbpress/bb-config.php');
to my wp-config.php file. I then added the bbpress discussions code:<table id="latest">
<tr>
<th><?php _e(‘Movie’); ?> — <?php new_topic(); ?></th>
<th><?php _e(‘Posts’); ?></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></td>
<td class=”num”><?php topic_posts(); ?></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(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
I added that code to my index.php file in my wordpress theme and this is what I get as the output in the browser:
<table id="latest">
<tr>
<th>Movie — Add New »
</th>
<th>Posts</th>
<th>Last Poster</th>
<th>Freshness</th>
</tr>
</table>
Obviously, there is something wrong. Does anyone know what?
Topic: Password Protected Forum?
Is it possible to create a password protected forum with BBPress? If so, what is the easiest way?