How to add Viber link to the element in bricks?

I try to add Viber link, to be the same as phone but i must be doing something wrong since its not working. Format I am using is
viber://chat?number=phone number/
Anyone ahve some clue why this thing dont work

I forgot to tell that its on the single product template for the single product page.

In case somebody runs into this issue - not a Bricks issue. Only certain protocols are allowed in Wordpress. The viber protocol isn’t allowed by default and has to be added via the following code into your child theme’s functions.php:

add_filter( 'kses_allowed_protocols', function ( $protocols ) {
  $protocols[] = 'viber';
  return $protocols;
} );
2 Likes

Thank you!!! it works! :muscle: