Would’t it be much easier to make Askimet a plugin? With an admin page where you can enter you askimet nr and perhaps see how many posts where blocked by it.
This would make using Askimet much easier…
Is this possible and who can make this? 
_Null
Would’t it be much easier to make Askimet a plugin? With an admin page where you can enter you askimet nr and perhaps see how many posts where blocked by it.
This would make using Askimet much easier…
Is this possible and who can make this? 
_Null
Is there a way via config.php or similar to override the local path? I thought it was BBPATH but I tried forcing that to something different and it’s not working, it’s still looking at the old path for the templates?
UPDATE: ah, I see the problem now. Even if you are using the default template, if you have changed your template and then changed it back to default, bbpress rememebers it as a custom template selection, not the default
so in template-functions.php ~line 17
if ( file_exists( bb_get_active_theme_folder() . $file) ) {
it thinks there is a custom theme and tries to load it’s known path stored in the db, rather than looking at BBPATH
For now I just deleted “bb_active_theme” from the topic meta table and it reverted to the default path off BBPATH, yay!
A minor bug I can put into trac.
Is there a way to stop my installation from putting backslashes before double and single quote marks and apostrophes? It’s highly annoying.
Hi,
Just released the last version of bbMenu. bbMenu 1.2 has some several bug fixes and minor code improvements:
– bbMenu now uses the bb_admin_add_submenu hook
– Fixed a bug that caused bbMenu to crash on some servers (thanks box87)
– Some code cleanup and optimalisations (thanks box87)
– Some template changes. If bbMenu is deactivated, the header now adapts and wont crash
Note that bbMenu 1.2 is not compatible with bbPortal 1.2 and bbPress pre 0.8
This is also the last version I release using the prototype libary. The next version will be jQuery based and smaller in size.
You can download bbMenu 1.2 here:
http://www.bbportal.org/bb-downloads/bbmenu1.2.zip
Figured I’d throw this out there… I made a tiny function to generate a “reply” link anywhere in the topic. I’m using it in the post meta area to let the user quickly go to the post reply box.
function geek_post_reply_link(){
global $topic;
echo '<a href="'.get_topic_link($topic->topic_id,get_page_number( $topic->topic_posts )) . "#postform".'">Reply</a>';
}
I couldn’t find anything else similar, so I thought I’d share.
Hi,
I would like to integrate bbpress user favorites to wordpress profile page. Is there any hook I could use?
I search the forum but I couldn’t find anything relevant.
thanks
It would really be nice to get an email notification of the following:
1) When a post or topic is held for moderation by Akismet.
2) When a user is tagged as a bozo.
I’ve repeatedly had to deal with users incorrectly getting tagged as bozo this week… I don’t know what the deal is.
What is the code to change the Freshness of post format to the Date – Hours – Minutes ?
Here is a how-to on the integrated live search for bbpress and wordpress
http://www.adityanaik.com/integratepress-part-ii-live-search/
From within a plugin I wanted to attach a new template/page name within the bbpress structure but I cannot figure out how to do it?
For example:
Let’s say I want to have a custom page called “list-plugins”
http://bbpress.nfshost.com/forums/list-plugins
The only way I was able to do this was to create new file in the bbpress root like this and save it as list-plugins.php
<?
require('./bb-load.php');
$bb_db_override = false;
do_action( 'bb_index.php_pre_db', '' );
do_action( 'bb_index.php', '' );
bb_load_template( 'list-plugins.php');
?>
Then that would load list-plugins.php in my template folder.
But can’t I attach a fake template name to bbpress via it’s rewrite system without having a physical file?