@allenpayne Yeees, its safe to install, no have any problems with my database (the most important thing), I test it with BD 1.7, so take care because now we have BD 1.7.1. Its a good plugin, but about the pitiful delay now I use https://buddydev.com/plugins/buddyblog/ with https://buddydev.com/plugins/bp-simple-front-end-post/ because I need to personalize the posting option and quite the capability to choose other category (I put only one by default), and quit attachent and other options, my users now have the capability to put only the title and the post. I did this by edit bp-simple-front-end-post/form.php and quit this code:
<!— generating the file upload box –>
<?php if($this->upload_count):?>
<label> <?php _e(‘Uploads’,’bsfep’);?></label>
<div class="bp_simple_post_uploads_input">
<?php for($i=0;$i<$this->upload_count;$i++):?>
<label><input type="file" name="bp_simple_post_upload_<?php echo $i;?>" /></label>
<?php endfor;?>
</div>
<?php endif;?>
<?php if($this->has_tax()):?>
<div class=’simple-post-taxonomies-box clearfix’>
<?php $this->render_taxonomies();?>
<div class="clear"></div>
</div>
<?php endif;?>
<?php //custom fields ?>
<?php if($this->has_custom_fields()):?>
<?php echo "<div class=’simple-post-custom-fields’>";?>
<h3>Extra Info</h3>
<?php $this->render_custom_fields();?>
<?php echo "</div>";?>
<?php endif;?>
<?php if($this->show_comment_option):?>
<div class="simple-post-comment-option">
<h3>Allow Comments</h3>
<?php $current_status=$this->comment_status;
if($post_id){
$post= get_post($post_id);
$current_status=$post->comment_status;
}
?>
<label for="bp-simple-post-comment-status">
<input id="bp-simple-post-comment-status" name="bp_simple_post_comment_status" type="checkbox" value="open" <?php echo checked(‘open’,$current_status);?> /> Yes
</label>
</div>
<?php endif;?>
Honestly, Social articles is more visual than buddyblog and simple front end post.