• Resolved rvsolutions

    (@rvsolutions)


    Hello,

    I am using this plugin for my site and it is best plugin so far and very user-friendly,

    However I want to insert mailto link to email icon so how can i insert in mail url field ?

    Thanks for help in advance…………

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author RadiusTheme

    (@techlabpro1)

    Hi,
    In detail page email already has link https://demo.radiustheme.com/wordpress/plugins/team/another-kamal-2/

    Where you want to add email link?

    Thanks

    Thread Starter rvsolutions

    (@rvsolutions)

    Hello,

    Thanks for prompt reply but I want mailto link with social icons,
    I have already put email icon with social icons.
    Here Here

    Thanks in Advance…………………..

    Plugin Author RadiusTheme

    (@techlabpro1)

    Try this

    $email = get_post_meta( get_the_ID(), ’email’, true );

    Thread Starter rvsolutions

    (@rvsolutions)

    Hello,

    Thanks for the reply and solution but where to add this code snippet ?

    Thanks in Advance…………………..

    Plugin Author RadiusTheme

    (@techlabpro1)

    This php code to get email

    so add link like this “>Email Icon

    Plugin Author RadiusTheme

    (@techlabpro1)

    `<a href=”mailto:<?php echo $email;?>”>Email Icon</a>

    Try this

    Thread Starter rvsolutions

    (@rvsolutions)

    Hello,

    Thank You for Quick replies and all solutions

    I only added email icons as social icon via “TPLSupprot.php” file by adding a line here is file content,

    <?php
    if( !class_exists( ‘TPLSupprot’ ) ) :

    class TPLSupprot {

    function verifyNonce( ){
    global $TLPteam;
    $nonce = @$_REQUEST[‘tlp_nonce’];
    $nonceText = $TLPteam->nonceText();
    if( !wp_verify_nonce( $nonce, $nonceText ) ) return false;
    return true;
    }

    function nonceText(){
    return “tlp_team_nonce”;
    }

    function socialLink(){
    return array(
    ‘facebook’ => __(‘Facebook’, TLP_TEAM_SLUG),
    ‘twitter’ => __(‘Twitter’, TLP_TEAM_SLUG),
    ‘linkedin’ => __(‘LinkedIn’, TLP_TEAM_SLUG),
    ‘youtube’ => __(‘Youtube’, TLP_TEAM_SLUG),
    ‘vimeo’ => __(‘Vimeo’, TLP_TEAM_SLUG),
    ‘google-plus’ => __(‘Google+’, TLP_TEAM_SLUG),
    ‘pinterest’ => __(‘Pinterest’, TLP_TEAM_SLUG),
    ‘envelope-o’ => __(‘Email’, TLP_TEAM_SLUG),
    );
    }

    }
    endif;

    Thanks in Advance For Your Help……………………..

    Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,
    I am closing this topic. If need any more support please reply me.

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to insert mailto link in url field of email’ is closed to new replies.