@rbs27 Certainly. I thought I had submitted my code here. Guess I forgot!
I added the following to my Theme’s functions.php file.
add_filter( 'kses_allowed_protocols', function ( $protocols ) {
$protocols[] = 'nuxtmobile';
$protocols[] = 'custom';
$protocols[] = 'capacitor';
return $protocols;
} );
You should only need to really add one to match whatever your schema is in Capacitor. But I added a few to cover multiple tests I was doing. I hope this helps!
Thanks Ian, I added my required protocols to the filter and it works perfectly now.