• Resolved cjmadolara

    (@cjmadolara)


    Hi, what is the function of the link icon near the share buttons? Also, nothing happens when click.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Md. Abdullah Al Mahim

    (@aamahin)

    Hello @cjmadolara

    Yes there are two hook available for fire your function into the share button list. if you want to hook something in the beginning of the list then use

    mep_before_social_share_list
    function should be like this:

    add_action('mep_before_social_share_list','your_function_name');
    function your_function_name($event_id){
    
    }

    and for hook after in the list use this:

    mep_after_social_share_list

    add_action('mep_after_social_share_list','your_function_name');
    function your_function_name($event_id){
    
    }

    Thanks & Regards.

    Thread Starter cjmadolara

    (@cjmadolara)

    I mean what is the function of this icon and why it is not working?
    https://cdn2.iconfinder.com/data/icons/pittogrammi/142/95-512.png

    `<i class=”fa fa-link”></i>

    • This reply was modified 4 years, 1 month ago by cjmadolara.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Link button near share buttons’ is closed to new replies.