Hi Elias,
First of all, I cannot apologize enough for the insane delay in response time here! There are a handful of support threads that for one reason or another seem to have totally fallen through the cracks of our support workflows – I messed up hugely here, and even though I’ve gone through looking for old issues to ensure threads don’t get ignored like this one did, it somehow missed my radar and has been sitting here unaddressed for far, far too long.
As for your issue – I’m not quite sure why for your specific website, the behavior from that original solution would be the inverse of what the other user found, but the (hopefully!) good news is that WordPress Core has its own email-obfuscation function that should be a good fallback option here. If you paste the following code into your theme’s functions.php file, do you find that the Single Event View’s organizer email is obfuscated?
function tribe_947096_obfuscate_organizer_email( $output ) {
return antispambot( $output );
}
add_filter( 'tribe_get_organizer_email', 'tribe_947096_obfuscate_organizer_email' );
Let us know if this helps – and damn, I’m really sorry about that support snafu there!