// career posts and the page w/ ID 13 both have forms,
// as long as we are not on one of those, we
// dequeue CF7 and reCaptcha to remove the v3 badge
// add to functions.php
add_action('wp_print_scripts', function () {
global $post;
$is_career = (is_single() && $post->post_type == 'career');
if (!$is_career && !is_page(array('13'))) {
wp_dequeue_script('contact-form-7');
wp_dequeue_script('google-recaptcha');
}
});