Plugin: Compartilhar
Adicione o seguinte código ao seu site, dentro da tag head:
            <script>
              function SocialShare(url) {
                  window.open('https://casaldisponivel.com/share?url=' + url, '', 'height=600,width=800');
              }
            </script>
            
Em seguida, coloque o botão de compartilhamento depois de alterar o URL que você deseja compartilhar no HTML da sua página:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
Além disso, você pode usar este código para compartilhar a página atual:
<button onclick="SocialShare(window.location.href)">Share</button>
Exemplo: