Social Shares

<div class="share-links product-share icon-share"><i class="fa fa-share-alt"></i>
    <div class="share-icons-list" style="display: none">
        <a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo get_the_permalink(); ?>" target="_blank" class="js--popup"><i class="fa fa-facebook"></i></a>
        <a href="https://plus.google.com/share?url=<?php echo get_the_permalink(); ?>" target="_blank" class="js--popup"><i class="fa fa-google-plus"></i></a>
        <a href="http://twitter.com/home?status=<?php echo get_the_permalink(); ?>" target="_blank" class="js--popup"><i class="fa fa-twitter"></i></a>
    </div>
</div>

custom facebook share
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo home_url('/games') ?>&title=Games by The Mascoteers&description=Download the games free on your iOS or Android Devices!&picture=<?php echo get_option('games_share_image') ?>"target="_blank" class="js--popup share-btn">>Share This Page</a>


$(document).on('click','.share-links',function(){
    $(this).find('.share-icons-list').toggle('slow');
});
 
/* social popup window */
/* http://andy-carter.com/site/js/ui.min.js */
function click(n,o,t){for(var i=document.getElementsByTagName(n),e=new RegExp("\\b"+o+"\\b","g"),p=0;p<i.length;p++)i[p].className.match(e)&&t.apply(i[p])}function popupWindow(){this.onclick=function(){var n=this.getAttribute("href");return window.open(n,"popup","height=350,width=400,toolbar=no,location=no,status=no,menubar=no"),!1}}window.onload=function(){click("a","js--popup",popupWindow)};