Forum Replies Created
-
In reply to: bbPress 2.0 – Updates
I think the problem is in the
get_option( '_bbp_user_slug', $prefix . 'user' )
etc. I don’t seem to have does in my options table. I’ll take a closer look.
Update:
$this->root_slug = apply_filters( 'bbp_root_slug', get_option( '_bbp_root_slug', 'forums' ) );
is where my problems are, I deleted ‘forums’ and now it’s fine.
In reply to: bbPress 2.0 – UpdatesLiterally go to your WordPress permalinks page and click save.
Yes, many times.
In reply to: bbPress 2.0 – Updatesdid you resave your permalinks?
Sorry I’m not sure what that means.
In reply to: bbPress 2.0 – UpdatesRevision 2704 is still causing me trouble regarding the 404/permalink issue. I’ve tried reactivating the plug-in and theme but to no avail.
In reply to: bbPress 2.0 – Updatesadding a postmeta key/value for each topic and reply of ‘_bbp_topic_last_active’ and ‘_bbp_reply_last_active’. The time should be in ‘mysql’ format in the DB.
Worked like a charm and thanks for getting the Freshness problem fixed.
In reply to: bbPress 2.0 – UpdatesSorry I just want to ask again if anyone else having a problem with New Replies not bumping their Topic to the top of the list in a Forum? If it’s simply not implemented yet that’s fine I just want to know that I’m not doing something wrong.
In reply to: bbPress 2.0 – UpdatesAnyone else having a problem with New Replies not bumping their Topic to the top of the list in a Forum?
In reply to: bbPress 2.0 – UpdatesAnyone else having problems with non-admins replying?
Edit: Found the problem
bbp-functions.php line 142 is
$reply_content = current_user_can( 'unfiltered_html' ) ? $_POST['bbp_reply_content'] : wp_filter_post_kses( $_POST['bbp_reply_description'] );
should be
$reply_content = current_user_can( 'unfiltered_html' ) ? $_POST['bbp_reply_content'] : wp_filter_post_kses( $_POST['bbp_reply_content'] );
In reply to: bbPress 2.0 – UpdatesI’d like to contribute, how can I?
In reply to: bbPress 2.0 – UpdatesI’ve been watching the action unfold on the trac… and in my spare time I also like to watch paint dry. But no, it’s great to see stuff happening.