To display some other data than email on the contact information box, you would need to replicate the contact information box with your own box, adding the code below in your theme functions.php file should do that
add_action( "init", function() {
remove_action('adverts_tpl_single_bottom', 'adverts_single_contact_information');
add_action('adverts_tpl_single_bottom', 'my_adverts_single_contact_information');
}, 100 );
function my_adverts_single_contact_information( $post_id ) {
adverts_single_contact_information( $post_id );
remove_action( "adverts_tpl_single_bottom", "adverts_single_contact_information_box", 2000 );
add_action( "adverts_tpl_single_bottom", "my_adverts_single_contact_information_box", 2000 );
}
function my_adverts_single_contact_information_box( $post_id ) {
?>
<div class="adverts-contact-box adverts-contact-box-toggle">
<p class="adverts-contact-method">
<span class="adverts-icon-phone adverts-contact-icon" title="<?php _e("Phone", "adverts") ?>"></span>
<span class="adverts-contact-phone"><?php echo get_post_meta( $post_id, 'adverts_phone', true ) ?></span>
</p>
<p class="adverts-contact-method">
<span class="adverts-icon-mail-alt adverts-contact-icon" title="<?php _e("Email", "adverts") ?>"></span>
<span class="adverts-contact-link"><?php echo "YOUR CUSTOM CODE HERE" ?></span>
</p>
</div>
<?php
}
Just replace <?php echo "YOUR CUSTOM CODE HERE" ?>
with actual code which will display your social link.