Adding Skype ID

Discussion in 'GeoCraft WordPress Theme' started by molatin, Jan 24, 2014.

  1. molatin

    molatin Member

    Joined:
    Aug 11, 2012
    Messages:
    558
    Likes Received:
    19
    In custom fields we have added an option to add a Skype ID to a listing so when you click the Skype icon it asks to send a contact request from me to the listing owner.

    We have set it up like this: Use this format: skype:SKYPE_ID?add.

    See also attached image.

    It would be better if the user could just put their Skype ID in without seeing or adding the coding.

    What do we need to do with the coding to set this up?

    thank you
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello molatin,

    For this open "single-listing.php" and paste code given below as shown in the image.

    Code:
    elseif ($field == 'ENTER YOUR HTML VARIABLE NAME HERE') {
                                                                echo '<a href=skype:' . get_post_meta($post->ID, $field, true) . '?Subject=subject here&Body=bodytext>' . get_post_meta($post->ID, $field, true) . '</a>';
                                                            } 
    skype.png



    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. molatin

    molatin Member

    Joined:
    Aug 11, 2012
    Messages:
    558
    Likes Received:
    19
    Thank you Nitesh - I'll try that - great!
     

Share This Page