Published on July 24th, 2008 by Ben L.
I’ve been working on this for about a week now, and I think it’s just about done.
http://www.xanimyle.co.cc/xaniforums
Plugins used:
- Bozo Users 1.0
- Akismet 1.0
- Post Count Plus – Dynamic.Titles & More! 1.1.5
- bbPress Web Compression (bb-gzip) 0.02
- Unread Posts 0.9.0
- Allow Images 0.7.1
- BBPress Private Messaging 0.80
- bbPress signatures 0.1.9
- Censor 0.1 (modified to change slugs and titles)
- Report Post 0.1.4
- BBcode Buttons Toolbar 0.0.4 (with an edit to use input type=”button” instead of div)
- BBcode Lite 1.0.1
- Avatar Upload 0.8.3
- Admin Can Post Anything 0.05
- Forum is category 1.2
- Temporary ban 1.0
Published on July 24th, 2008 by
Hello Everyone!
Ive installed the bbpress forum on my site, but Id like to make it so that people dont have to login…and maybe just have to use CAPTCHA.
Is that possible? If so, can someone explain to me the best way to do it?
The site is http://www.portcityunderground.com/ and the forum is located under the “Rant & Rave” tab at the top in the black bar.
Thanks in advance for any help!!
Published on July 24th, 2008 by Göran
I have made some small changes in the Kakumei theme to change colors. My forum at http://www.enkelwebbplats.se/forum/ is now how I want except two minor things:
1. I want to change the color of Add new topic (in Swedish LÄGG TILL NYTT ÄMNE) which is now in black and not easily seen after I changed background to navy blue.
2. I use a Swedish language file but as you can see “Register or log in:” is not translated as is also not “Rememer me”. Where can I change that?
I am most grateful for any advice!
Published on July 23rd, 2008 by
I was working on this for a long time (ok, a week lol):
http://forums.astateofmind.eu/
A little “mootools” powered – category descriptions are appearing when name is hovered, pages have been created using simple smoothbox, sidebar included on each and every page.
What do you think?
Published on July 23rd, 2008 by
Hello, i try this in front-page.php:
<tr<?php bb_forum_class(); ?>>
<td><?php bb_forum_pad( '<div class="nest">' ); ?>"><?php forum_name(); ?><small><?php forum_description(); ?></small><?php bb_forum_pad( '</div>' ); ?></td>
<td class="num"><?php forum_topics(); ?></td>
<td class="num"><?php forum_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?>, il y a "><?php topic_time(); ?></td>
</tr>
but the “><?php topic_time(); ?> show me all time the date of the first post, in all the forum themes … Why?
bye
Published on July 23rd, 2008 by
What do you think about integrate the private message by default? 
https://bbpress.org/plugins/topic/private-messages/#post-43
Published on July 23rd, 2008 by
I think it is important to have a memberlist in a forum, so, why don’t integrate the plugin by default?
see: http://faq.rayd.org/memberlist/
bye
Published on July 23rd, 2008 by
I work with bbPress 0.9.
Been trying for hours to get this SQL into a view?
How should the array for bb_register_view() look like?
SELECT bbt.*, (SELECT COUNT(*) FROM bb_ratings WHERE topic_id=bbt.topic_id) AS counts
FROM bb_topics bbt, bb_ratings bbr
WHERE bbt.forum_id = 2 AND bbt.topic_status = 0
GROUP BY bbt.topic_id
ORDER BY counts DESC
Published on July 23rd, 2008 by
Hello,
in the default theme, i see the link for the profile is on the title “admin”, etc.. but this is correct? i think no! I think it is more normal to have the link of the profile on the name of author, no?
How to change that?
bye
Published on July 23rd, 2008 by
Hello,
i want to add at bbPress the 100% width in admin, like this plugin for wordpress:
So, the code is:
add_filter('tiny_mce_before_init', 'rmw_tinymce');
function rmw_tinymce($init){
$init = true;
return $init;
}
add_action(‘admin_head’,’rmw_head’,99); //Hook late after all css has been done
function rmw_head(){
global $is_IE; ?>
<style type=”text/css” media=”all”>
.wrap,
.updated,
.error,
.widefat,
#the-comment-list td.comment {
max-width: none !important;
}
<?php if( $is_IE ){ ?>
* html #wpbody {
_width: 99.9% !important;
}
<?php } ?>
</style>
<?php } ?>
but not works for bbPress… what can i do for the plugin works?
bye