Forum Replies Created
-
In reply to: Successfully convert SMF 2.0 RC1 to bbPress 1.0
Edit: Im not sure if this works for SMF 2.0
Heres how I did it, although its pretty annoying.
Download buddypress.
Theres a plugin for buddypress called ‘SMF import’ run that.
Then in admin dashboard go Tools>import>bbPress Standalone
You can then delete the buddypress and import plugins if you want
In reply to: Editing topics and replies in bbPress 2.0Glad it worked for you also.
I think it should be implemented in a different way also.
I just hacked it together because I dont really know the proper way of getting it to work.
In reply to: Editing topics and replies in bbPress 2.0I actually joined just to post this exact problem.
I managed to figure it out after reading this!
You were right when you suggested it could be to do with the permelinks because I was using the exact same custom structure of “/%category%/%postname%/” and had the same problem.
The solution is either a)
Use the default link structure or
edit function ‘bbp_get_topic_edit_link’ in file
wp-content/plugins/bbpress/bbp-includes/bbp-topic-template.php
with this line of code
$uri .= ‘?edit=1’;
just before it returns.
Then do the same for
wp-content/plugins/bbpress/bbp-includes/bbp-reply-template.php
with function ‘bbp_get_reply_edit_link’
So now the edit url should look like
http://beta.guildwars2community.com/forums/topic/ranger-pets/?edit=1
I hope this helps!