I have a Meta Box with oEmbed and Clone on, and it works great in admin to add multiple videos to a custom post type. In display, I have one video that cannot use oEmbed and another that can. Using rwmb_the_value, it shows "Embed HTML not available." and then the second one works as a YouTube embed. I'd like to change the "HTML not available" to just be a link to the video in a new tab, but cannot get the video URL. I see this in the docs, but $message only seems to hold the original message.
add_filter( 'rwmb_oembed_not_available_string', function( $message ) {
$message = 'Sorry, what you are looking here is not available.';
return $message;
} );
Is there a way to change the message to make it a link when oEmbed is not available? I'm fine looping through the Meta Box array if I need to do that, but I'm just not sure what's the best way here.