• Resolved itguy1024

    (@itguy1024)


    Hey all,

    Is there a way to disable comments on the events? I have comments disabled on my WP site thinking it was a WP global setting.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Rajat Patel

    (@rajat1192)

    Hello @itguy1024,

    Thank you for reaching out to us,

    You can disable the comment section on the event detail page by copy-pasting the code below in the currently active theme functions.php file.

    The Code:

    function remove_facebook_events_comment() {
        remove_post_type_support( 'facebook_events', 'comments' );
    }
    add_action( 'init', 'remove_facebook_events_comment' );

    Thanks & Regards,
    Xylus Themes

Viewing 1 replies (of 1 total)
  • The topic ‘Disable Comments’ is closed to new replies.