Remove the Claimable MetaBox
With Shannon's help was able to remove the contact info meta box. I would also like to remove the Claimable metabox.
I tried the following:
/*-----------------------------------------------------------------------------------*/
/* Remove Contact Info, Claimable Meta boxes
/*-----------------------------------------------------------------------------------*/
function childtheme_remove_metaboxes() {
remove_meta_box( 'listing-contact', VA_LISTING_PTYPE, 'normal' );
remove_meta_box( 'listing-claimable', VA_LISTING_PTYPE, 'normal' );
}
add_action( 'add_meta_boxes', 'childtheme_remove_metaboxes', 11 );