How to Disable Social Media share links?

How to Disable Social Media share links?

  1. Open your child theme,
  2. Add the following code into the functions.php file.
  1. add_filter( 'event_manager_event_friend_share', 'wpem_event_manager_event_friend_share' );
  2. function wpem_event_manager_event_friend_share()
  3. {
  4. return false;
  5. }