I recognize that this question has been asked before, but the answers are old,don't seem to apply to the latest (1.3.3) version of P2, and are not definitive as far as my trials have revealed.
I'm looking to change the default post type from Status to Blog Post. I can get as far as changing the function that controls the default post type: p2_get_posting_type in the template-tags.php file, changing "status" to "post":
function p2_get_posting_type() {
$p = isset( $_GET['p'] ) ? $_GET['p'] : 'status';
return $p;
}
which gets me 75% there. The Blog post then becomes the default, but there is something still not quite right. An initial post works fine, but on subsequent posts, the Post Title area doesn't reset, it holds onto the Title from the initial post. If you delete the title, then click "somewhere else" on the site, then click back in the Title field, the "Post Title" prompt returns.
What could be leading to the title field not "resetting" itself for subsequent entries?