@spedney, I think I see what’s happening here. As for the formatting that appears when you switch from a “telephone” link to a “standard” link, this is expected as the input takes whatever has been provided and sanitizes it / automatically prefixes it with tel:
as a graceful fallback.
Additionally, the “preview” is correct, too, as it does not parse dynamic content within that input, so just seeing the DC string repeated is correct.
However, what I am seeing is that if I just do something like {{dc:global:date format="YYY"}}
in the telephone input to simulate pulling through some numbers from Dynamic Content, what I should see in that case is tel:202220222022
when I hover over my Button in the live preview, but instead I see tel:October 7, 2022
. However, if I go to the standard link input and manually write in tel:{{dc:global:date format="YYY"}}
, I do see tel:202220222022
outputting as expected. My thought here is that something is off with the parsing of arguments in Dynamic Content, which is why the formatting is being ignored in the telephone input and respected in the base input.
As you mentioned, this is somewhat outside the scope of this release, but I have put a note together on this in our issue tracker to be looked into. For now, you can certainly manually write in any Dynamic Content links using the standard input and prefixing them with tel:
as needed.
Thanks!