Viewing 2 posts - 1 through 2 (of 2 total)
The topic ‘ [Resolved] Blog categories for groups – posts being created as drafts’ is closed to new replies.
This topic is: resolved
Tagged: blog-categories-for-groups
Hi there,
When new posts are created with Blog Categories for Groups and BP Simple Front End Post, the posts are created as drafts.
Is there a way for these posts to be automatically published?
Hi James,
For the time being, you can put this in your bp-custom.php to allow direct publishing.
add_filter( 'bcg_form_args', 'bcg_custom_form_args' );
function bcg_custom_form_args( $args ) {
$args['post_status'] = 'publish';
return $args;
}
Please do note that this plugin is going through rewrite at the moment and we will have a version ready by next week that will allow you to select these settings from Settings page.
Hope that helps.
The topic ‘ [Resolved] Blog categories for groups – posts being created as drafts’ is closed to new replies.