The following code can be implemented in the functions.php file of the child theme to hide the Social Media share links on specific events.
- Open your child theme,
- Add the following code into the functions.php file.
add_filter('event_manager_event_friend_share','wpem_event_manager_event_friend_share');functionwpem_event_manager_event_friend_share(){-
returnfalse; - }