Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lstelie

    (@lstelie)

    Hello,

    In case it could help.. a dirty solution
    I have a child theme with a specific header.php

    In header.php search for

    <?php if ( is_email( $email_link ) ) : ?>

    And delete this condition , don’t forget to delete the closing

    <?php endif; ?>

    Then hardcode the url

    A more elegant solution would be something I’m unable to code cleanly and that would say :

    <?php if ( is_email( $email_link ) ) : ?>
    => link to mailto
    <?php else ( is_url( $url_link ) ) : ?>
    => link to url
    Luc

    Thanks for sharing your solution!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Email contact button: using /contact instead of mailto ?’ is closed to new replies.