• Resolved prasadwalvekar

    (@prasadwalvekar)


    hello,

    i am working on a magazine theme design and i wanted to know how the thumbs-up button functionality under each blog post found at https://www.movenourishbelieve.com/ is implemented.

    i am using a plugin called Simple Share Buttons Adder which only adds buttons.

    i have already implemented the on click functionality using javascript. Here is the script-

    <script>
    		$(document).ready(function(){
    		    $("#thumbup").click(function(){
    		      $("#hidden-like").toggle();
    		    });
    		});
    	</script>

    The problem that i am facing is when i click on the thumbs-up button under a particular blog post, social icons under all blog posts open up. How can i make my thumbs up button open share icons only on the post under which it is placed.

    Also, once the user clicks on any of the share buttons, it has to only share that post.

    Thanks

  • The topic ‘customize functionality of share buttons under each blog post’ is closed to new replies.