Navigation überspringen

[Gelöst] How to add link text to url?

Dieser Thread wurde gelöst. Hier ist eine Beschreibung des Problems und der Lösung.

Problem:
I want to add custom text to the link of an URL Field created by Toolset Types.
How?

Solution:
You can have Links saved in a URL Field with a custom label for the link coming from another field, you can either use the ShortCode like the below

[types field='url' title='[types field="my_title_field"]'][/types]

or, a custom HTML link like the below

<a href="[types field='url' output='raw'][/types]">[types field='my_title_field' output='raw'][/types]</a>

Note that the URL should be saved in an URL Field.

Relevant Documentation:
https://toolset.com/documentation/customizing-sites-using-php/functions/

This support ticket is created vor 5 Jahren, 7 Monaten. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- - 14:00 – 20:00 14:00 – 20:00 14:00 – 20:00 14:00 – 20:00 14:00 – 20:00
- - - - - - -

Supporter timezone: Asia/Ho_Chi_Minh (GMT+07:00)

Dieses Thema enthält 2 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von PawelS4412 vor 5 Jahren, 7 Monaten.

Assistiert von: Beda.

Author
Artikel
#1242508

Tell us what you are trying to do?
I need to make custom field in a way that on output it will be possibile to add "text filed" and "url to link it" (on one field)

Is it possible? If you will send me some code please give me also instruction how to use it (I am basic here)

#1242539

I am not sure what you mean, please correct me if wrong, however, if you plan to output Links saved in a Field with a custom label for the link coming from another field, you can either use the ShortCode like [types field='url' title='[types field="my_title_field"]'][/types] or, a custom HTML link like the below

<a href="[types field='url' output='raw'][/types]">[types field='my_title_field' output='raw'][/types]</a>

Note that the URL should be saved in an URL Field.

#1243163

My issue is resolved now. Thank you!