Hi Bernard,
Thanks for your question. You may override the Services post type to disable the front-end view for single Service posts. Try to add the code below to the functions.php file of your theme:
function theme_disable_fronend_mphb_room_service( $args, $post_type ) {
if ( 'mphb_room_service' === $post_type ) {
$args['publicly_queryable'] = false;
}
return $args;
}
add_filter( 'register_post_type_args', 'theme_disable_fronend_mphb_room_service', 10, 2 );
best regards,
J. Davis