Hello @graicifyd
Thank you for reaching us.
Facebook share is already present on the listing. Please refer to the screenshot- https://prnt.sc/yv0atu
If you want to add “WhatsApp” to the list then add the following snippet in Appearance > Theme Editor > functions.php
function directorist_custom_whatsapp_share() {
wp_enqueue_script( 'jquery' );
?>
<script>
jQuery(document).ready(function($){
var whatsappURL = window.location.href;
$('.atbd_directory_social_wrap ul').append('\
<li><a target="_blank" href="" class="set_dynamic_url" data-action="share/whatsapp/share">\
<span class="la la-whatsapp">WhatsApp</span>\
</a></li>\
');
$('.set_dynamic_url').attr('href', 'https://api.whatsapp.com/send?text=' + $.trim(whatsappURL));
});
</script>
<?php
}
add_action( 'wp_footer', 'directorist_custom_whatsapp_share');
Regards,
-
This reply was modified 4 years, 1 month ago by
Rafiz Sejim.