Hi @Olivia_Riggs!
I tried Jeff’s code from this thread for Facebook and it works
In the Sitejet Builder, I used an html element and inserted the following code:
<a href="#" class="fa fa-facebook" onclick="shareOnFacebook()"></a>
<script>
function shareOnFacebook() {
// URL of the current page
const currentPageUrl = window.location.href;
// Open the Facebook Share Dialog
window.open('https://www.facebook.com/sharer/sharer.php?u=' + encodeURIComponent(currentPageUrl), 'facebook-share-dialog', 'width=626,height=436');
}
</script>
Note: This only shares the current page, and not a specific anchor on that page. Also: this code only renders a small Facebook (f) icon with no styling. I’m sure you can insert a different icon to your liking and style it anyway you want.
Please let us know if you manage to get it working with the others too (Twitter, Pinterest etc)