Render url field without https://

I have an url field. It renders the link with https:// as it was entered and validated. How can I render it without https://?

https://mylink.com

to

mylink.com

:flushed:

Kirby’s Url::short('https://mylink.com') could be what you are looking for?

Alternatively building something custom using PHP’s str_replace or parse_url functions is an option.