How to create social share button for brizy cloud ?

Philip is freelancer

If you feel the content is useful. Thank for me with a coffee ๐Ÿ˜Š

April 01, 2023 11:00 am

You can install some more plugins in wordpress, but in brizyclud there is no function yet. This is a guide to add social sharing buttons for brizy cloud. Using only 3 lines of javascript code

How to create social share button for brizycloud?

add icon element and change social network icon

add class name: "share-socical" for all icon elements

copy and paste the following links to social media icons

  1. http://www.facebook.com/sharer.php?u=
  2. http://twitter.com/share?text=
  3. https://www.linkedin.com/shared/share-offsite/?url=
  4. https://t.me/share/url?url=
  5. https://www.facebook.com/dialog/send?link=
  6. https://web.skype.com/share?url=
  7. https://web.whatsapp.com/send?text=
  8. https://www.tumblr.com/share?t=

add embed element

copy and paste javascript code

Code Javascript

<script>

var share_socical = document.querySelectorAll(".share-socical > a");

for (var i = 0; i < share_socical.length; i++) {

share_socical[i].href = share_socical[i].href + encodeURIComponent(window.location.href);

}

</script>

DONE!!!!


Note:

You can hide embedded element

I put social sharing buttons in popup. But you can put in a block and set global condition and stick fixed butto


If you feel the content is useful. Thank for me with a coffee ๐Ÿ˜Š