0

I created a link to connect the viber in wordpress. But it does not working.

<a href="href='//chat?number=xxxxxxxxxx'"/>xxxxxxxxxx</a>
Octavia
  • 51
  • 8

1 Answers1

0

In your theme functions.php (preferable child theme) use this to allow "viber" protocol:

add_filter( 'kses_allowed_protocols', function ( $protocols ) {
   $protocols[] = 'viber';
   return $protocols;
} );
Alexandru Florea
  • 546
  • 2
  • 7
  • 25