Forum Replies Created
-
In reply to: Is bbPress still alive?
- There would be a 1.1 version for bbPress standalone, which should be out soon.
- 1.2 would be the plugin.
- You would be able to migrate from standalone to the plugin.
- You’d be able to run your wp blog in forum-only mode.
Hope that clears everything.
In reply to: import all topic and post from wordpress to bbpressI would suggest that you hire a developer because that script is currently meant to be only run by a person who at least knows the basics of coding, bbPress/WordPress etc.
In reply to: import all topic and post from wordpress to bbpressI would suggest that you hire a developer because that script is currently meant to be only run by a person who at least knows the basics of coding, bbPress/WordPress etc.
In reply to: import all topic and post from wordpress to bbpressIf you have your blog in a directory, and the forums in a sub-directory called
forum
, then you need to put this script in the WordPress blog directory, where you would find yourwp-config.php
file. Otherwise you would need to edit thedefines
on lines37
and38
:define( 'W2BC_WP_PATH', '' ); /** With Trailing Slash, if required */
define( 'W2BC_BB_PATH', 'forum/' ); /** With Trailing Slash, if required */In reply to: import all topic and post from wordpress to bbpressIf you have your blog in a directory, and the forums in a sub-directory called
forum
, then you need to put this script in the WordPress blog directory, where you would find yourwp-config.php
file. Otherwise you would need to edit thedefines
on lines37
and38
:define( 'W2BC_WP_PATH', '' ); /** With Trailing Slash, if required */
define( 'W2BC_BB_PATH', 'forum/' ); /** With Trailing Slash, if required */In reply to: import all topic and post from wordpress to bbpressThere are no downloads, but here is the script – http://wordpress-to-bbpress-converter.googlecode.com/svn/trunk/w2bc.php
It currently doesn’t support user migration, but that should be easy (and should be done before running the script). I think it’d be basically renaming the tables, though I’m not sure.
Also, *PLEASE* make a backup of your WordPress blog and follow the instructions carefully.
– Author of the script
In reply to: import all topic and post from wordpress to bbpressThere are no downloads, but here is the script – http://wordpress-to-bbpress-converter.googlecode.com/svn/trunk/w2bc.php
It currently doesn’t support user migration, but that should be easy (and should be done before running the script). I think it’d be basically renaming the tables, though I’m not sure.
Also, *PLEASE* make a backup of your WordPress blog and follow the instructions carefully.
– Author of the script
In reply to: bbPress 2.0 – Updatesmobious74
: Try going to Settings -> Permalinks and press save changes.In reply to: bbPress 2.0 – UpdatesThanks Rich!
In reply to: bbPress Plugin – bbp-twentyten theme@Chip Bennett
Thank you! One major thing that has changed is the prefix of the functions. Instead of
bb_
, it isbbp_
. The functions names are easy to guess likebbp_forum_title
,bbp_topic_title
,bbp_topic_reply_count
etc. We don’t havepost
– that has been split intotopic
andreply
. Thoughpost
is used to refer to topic and reply both in some functions likebbp_fix_post_author()
, but that’s a couple of functions only. Like the standalone, WP, BP, etc there are 2 versions of the same function – one that echoes and one that returns so you’d havebbp_topic_content
,bbp_get_topic_content
etc.Right, there is a great need for the documentation. We’ve tried our best to have upto date inline documentation (phpDocs) in place.
In reply to: bbPress Plugin – bbp-twentyten theme@Chip Bennett
Thank you! One major thing that has changed is the prefix of the functions. Instead of
bb_
, it isbbp_
. The functions names are easy to guess likebbp_forum_title
,bbp_topic_title
,bbp_topic_reply_count
etc. We don’t havepost
– that has been split intotopic
andreply
. Thoughpost
is used to refer to topic and reply both in some functions likebbp_fix_post_author()
, but that’s a couple of functions only. Like the standalone, WP, BP, etc there are 2 versions of the same function – one that echoes and one that returns so you’d havebbp_topic_content
,bbp_get_topic_content
etc.Right, there is a great need for the documentation. We’ve tried our best to have upto date inline documentation (phpDocs) in place.
In reply to: bbPress 2.0 – UpdatesAnd these popped up in mine – http://gaut.am/2011-a-new-kind-of-forum-software-is-born/comment-page-1/#comment-2667
[2791] [2792]
Edit: Oh.. I read the rest of your comment later..
Well, yes the query count has gone up, there would have to be an optimization round.
Thanks for the age comment, though!
In reply to: bbPress Plugin – bbp-twentyten theme@Mark McWilliams
Just DM me your email id and I’ll mail you your user/pass of my test forums.
In reply to: bbPress Plugin – bbp-twentyten theme@Mark McWilliams
Just DM me your email id and I’ll mail you your user/pass of my test forums.
In reply to: bbPress Plugin – bbp-twentyten themesetup the equivalent of WPDEVEL but for bbPress
We already have bbpdevel.wordpress.com – though that’s not active.
In reply to: bbPress Plugin – bbp-twentyten themesetup the equivalent of WPDEVEL but for bbPress
We already have bbpdevel.wordpress.com – though that’s not active.
In reply to: Restricted section for certain users?This is a thing which is there in the bbPress plugin – private forums.
In reply to: Restricted section for certain users?This is a thing which is there in the bbPress plugin – private forums.
In reply to: bb-query help!In the plugin, it would make use of
WP_Query
which is a lot flexible – you would be able to do such things there afaik.In reply to: bb-query help!In the plugin, it would make use of
WP_Query
which is a lot flexible – you would be able to do such things there afaik.In reply to: bb-query help!You can only have one
tag_id
arg, that too should be an integer ( also=
check is made, you can’t have!=
check ). Try this:function my_custom_views_init() {
$args = array(
'tag_id' => 35
);
bb_register_view(
'fruits',
'Fruit',
$args,
false
);
}You may try to short-circuit the query though, as shown in this plugin – https://plugins-dev.bbpress.org/browser/my-views/trunk/my-views-statistics.php
In reply to: bb-query help!You can only have one
tag_id
arg, that too should be an integer ( also=
check is made, you can’t have!=
check ). Try this:function my_custom_views_init() {
$args = array(
'tag_id' => 35
);
bb_register_view(
'fruits',
'Fruit',
$args,
false
);
}You may try to short-circuit the query though, as shown in this plugin – https://plugins-dev.bbpress.org/browser/my-views/trunk/my-views-statistics.php
In reply to: Things are looking up! – a 'thank you' noteThank you
In reply to: Things are looking up! – a 'thank you' noteThank you
In reply to: bbPress 2.0 – Updates@Willabee
bbp_is_forum()
,bbp_is_topic()
,bbp_is_reply()
.