Force hide custom field metaboxes

http://codex.wordpress.org/Function_Reference/remove_meta_box

function remove_custom_meta_form() {
    remove_meta_box( 'postcustom', 'post', 'normal' );
    remove_meta_box( 'postcustom', 'page', 'normal' );
}
add_action( 'admin_menu' , 'remove_custom_meta_form' );

HTH