How to Disable Social Media share links?
- 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'
);
function
wpem_event_manager_event_friend_share()
{
return
false;
}
Related Articles
Disable Any theme timepicker
This guide will help you disable a particular theme timepicker and get back to the default one that is offered by the plugin. To disable the theme timepicker, follow the below mentioned steps: Open your child theme, Add the code into the funtions.php ...
Event Detail Page
The Event detail page carries various details of a particular event. These details include the event title, event type, event location, event start date & time, event end date & time, event description, etc. besides this, you can also get the details ...
Hide Comment on Single Event Listing Page
A user of WP Event Manager can display or hide the comment section on the single event listing page. In this guide, you will learn about how you can disable or hide the comment section on your single event listing page. Here are the steps you need to ...
How to allow organizers to add images in the description box
How to allow organizers to add images in the description box on the submit event page? In order to allow the organizers to add images while submitting the event in the description box, from the frontend, you need to add the below-mentioned code in ...
Hide Additional Information Section from Single Event Page
Different businesses have different requirements and custom fields help them adjust single event listing fields as per their requirements. WP Event Manager offers a separate section in the single event listing page named Additional fields that ...