Making the links open in a popup is a good idea. But certain websites are big and doesn’t fit the small popup.
But if you are using jQuery in your website, then use the code in the theme footer.
$(document).ready(function(){
$(‘.wp-socializer a’).click(function(e){
e.preventDefault();
var url = $(this).attr(‘href’);
win = window.open(url,’window’,’height=350,width=550′);
});
});
Thank you.