Answer the question
In order to leave comments, you need to log in
Is it possible with pdoTools to display only numbers from the TV field?
The phone number must be entered correctly.
Now the conclusion is as follows:
<a href="tel:" class="phone header__phone"></a>
Answer the question
In order to leave comments, you need to log in
Fenom in the pdoTools package can do something like this
{5 | resource : 'phone-1' | preg_replace : '[^0-9]' : ''}
It is worth writing a snippet that works as a modifier, for example, look at how insane dates are filtered
Thanks Froggyweb for the idea.
I wrote a simple snippet with a regular expression that leaves only numbers in the string:
<?php
$result = preg_replace('/[^0-9]/', '', $input);;
return $result;
<a href="tel:" class="phone header__phone"></a>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question