Search Results for 'code'
-
Search Results
-
Topic: XaniForums
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
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
Topic: Integrate PM by default
What do you think about integrate the private message by default?

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
Hello,
with the last installation of bbpress revision 1595, i have sql errors:
SQL ERROR!
>>> Database: forum_bbpress (localhost)
>>>>>> CREATE TABLE IF NOT EXISTS
bb_forums(forum_idint(10) NOT NULL auto_increment,forum_namevarchar(150) NOT NULL default ”,forum_slugvarchar(255) NOT NULL default ”,forum_desctext NOT NULL,forum_parentint(10) NOT NULL default 0,forum_orderint(10) NOT NULL default 0,topicsbigint(20) NOT NULL default 0,postsbigint(20) NOT NULL default 0,PRIMARY KEY (
forum_id),KEY
forum_slug(forum_slug)) DEFAULT CHARACTER SET ‘utf8’ COLLATE ”;
>>>>>> Unknown collation: ”
SQL ERROR!
>>> Database: forum_bbpress (localhost)
>>>>>> CREATE TABLE IF NOT EXISTS
bb_meta(meta_idbigint(20) NOT NULL auto_increment,object_typevarchar(16) NOT NULL default ‘bb_option’,object_idbigint(20) NOT NULL default 0,meta_keyvarchar(255) default NULL,meta_valuelongtext default NULL,PRIMARY KEY (
meta_id),KEY
object_type__meta_key(object_type,meta_key),KEY
object_type__object_id__meta_key(object_type,object_id,meta_key)) DEFAULT CHARACTER SET ‘utf8’ COLLATE ”;
>>>>>> Unknown collation: ”
SQL ERROR!
etc, etc…
why?
bye

