Philip is freelancer
If you feel the content is useful. Thank for me with a coffee ๐
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
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 ๐