Front-end hyperlinks

Support General Front-end hyperlinks

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #30666
    Benchmark GraphicsBenchmark Graphics
    Participant

    Hello,

    How do I make custom fields appear as live hyperlinks on the front-end?

    I have created a directory Custom Post Type and I would like the contact details such as email, telephone and URL clickable on the front end.

    Here is a link to the web page: https://www.warminghamvillagehall.org/directory/

    I have used the following custom fields to create this:

    • HTML5 email
    • HTML5 phone number
    • Basic URL

    Thanks,
    Mark

    #30668
    Long NguyenLong Nguyen
    Moderator

    Hi Mark,

    To show the URL, email, phone field value in a button, you need to assign it to the attribute href of the <a> tag to make it clickable. Just like

    <a href="<?php echo rwmb_meta( 'field_url_id' ) ?>">Button Link</a>
    <a href="tel:<?php echo rwmb_meta( 'field_phone_id' ) ?>">Call me</a>
    <a href="mailto:<?php echo rwmb_meta( 'field_email_id' ) ?>">Email me</a>
    #30669
    Benchmark GraphicsBenchmark Graphics
    Participant

    Hi Long,

    Thanks for coming back to me. Sorry the link to view the website currently doesn't work – my client has activated the 'Coming Soon' page.

    Is there anyway to add it as a function, as the code you have suggested would be confusing to my client.

    I have created the email, telephone and URL custom fields to the 'Directory' custom post type, so it's easy for my client to create directory listings on their website, like in this screenshot:

    https://puu.sh/I9Sew/60c1714dfc.png

    They just need to add the email, phone or URL to the field and that would automatically become a clickable link in the front-end, if that is possible.

    Thanks,

    Mark

    #30674
    Long NguyenLong Nguyen
    Moderator

    Hi,

    The helper function will return a raw value so you need to wrap it in a <a> tag to make it clickable. To get the field value, please read more here https://docs.metabox.io/displaying-fields/

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.