Now here is something I have noticed is that non members can still see these buttons if you have your site set to public so anyone can see your content, also one problem I noticed is that I have my site set to invite only although I still want you guys to see the content and so these buttons still show which is an issue. I have not tried it yet but if someone click says the Facebook one will this allow them to still signup or request to sign up even though my site is invite only so there are no sign up link.
To make sure here is some code that will REMOVE them for non members. The reason we remove and just not hide is that if someone knows how to use developer tools etc they could just remove the display none and then see the buttons so by removing them they cannot do that.
( by the way I have not used this code yet on my site as I want you to be able to see the show and hide tip for them, but I will be in the next few days once everyone has had chance to see the tip )
Goes in your Social Site Builder > Custom Code
<script>
x$(document).ready(function() {
if (ning.CurrentProfile === null){
x$('.socialButtons, .socialSharingButton').remove();
}
});
</script>
Replies
Slick!
Thanks JF :-)