@jason– Well, you just ruined one of our surprises for the next release. 😉
We will be adding a filter to the comment blocks so you can do exactly what you just asked for.
1) First, you will need to manually add the filter yourself until 0.9.4 is released. Open class-piklist-cpt.php. And find this line:
$types = empty($data['type']) ? get_post_types() : explode(',', $data['type']);
2) Add this code right before that line:
$data = apply_filters('piklist_add_meta_box', $data, $post);
3) Now you can filter the $data array that pulls in the comment block.
EXAMPLE:
add_filter('piklist_add_meta_box','my_comment_block_filter', 10, 2);
function my_comment_block_filter($data, $post)
{
// filter $data array here
return $data;
}
Let us know if you have questions on how to use this.