clickable link on a phone number

prettem

Member
Hello Eugenio,

is it possible to have a clickable link on a phone number like this

<a href=”tel:+492414133100″>+49 241 4133-100</a>

When I use content type "phone" in forms-editor its not displayed as clickable (otherwise emails are clickable with mailto:)

best regards
Manuel


About/upgrade​

DaDaBIK™ is a product conceived and developed by Eugenio Tacchini
Copyright © 2001-2022 Eugenio Tacchini
Proudly ❤️ made in Emilia
dadabik.com

Your current DaDaBIK version​

You are using DaDaBIK version 11.6-Elba enterprise, installed on 16.06.2022 (installation code: 1780462288396de6b1), the latest version of DaDaBIK is 11.7-Elba released on 18.08.2022

You are not running the last release of DaDaBIK, the release you are running might have bugs and security holes, see the official change log for further information. You can upgrade DaDaBIK here.

In case you want to upgrade to a more powerful edition (from Pro to Enterprise/Platinum, from Enteprise to Platinum) please contact us.

System info​

PHP Version: 7.3.27

mysql version: 5.7.33-0ubuntu0.16.04.1

Web server: Apache

Client: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 OPR/92.0.0.0
 

eugenio

Administrator
Staff member
Hi,
phone fields do not automatically add a TEL link. It would be a nice improvement though, maybe you can add it to the feature suggestions forum?

At the moment the only thing you can do is to add a custom formatting function and format the phone by yourself.

Best,
 

prettem

Member
It works with this custom formatting function:

function dadabik_format_tel($nummer) {
return '<a href="tel:'.$nummer.'">'.$nummer.'</a>';
}

best regards Manuel
 
Top