Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter thejerseydevlindirectory

    (@thejerseydevlindirectory)

    PS: The RSS Link appears to the left of the RESET Button when the Search boxes are used.

    Hi @thejerseydevlindirectory,

    You can disable RSS link by adding following code to your child theme’s functions.php file

    add_filter('event_manager_event_filters_showing_events_links', 'wp_event_manager_disable_rss_link' ,10);
    function wp_event_manager_disable_rss_link($settings){
    	unset($settings['rss_link'] );
    	return $settings;	
    }

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘RSS Link’ is closed to new replies.