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 ...
Adding Your First Event
With WP Event Manager, it is simple to add your first event using shortcodes. In this guide you will learn about the entire process of adding an event to your website. Adding your first event using the frontend event submission form WP Event Manager ...
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 ...