• Resolved viktord

    (@viktord)


    Is there a way to disable the announcements completely? I’m creating a website that just needs the messaging system not announcements.

    Thank you!

Viewing 1 replies (of 1 total)
  • Plugin Author Shamim Hasan

    (@shamim51)

    Please add following code in your theme’s (child theme’s if any) functions.php

    
    add_filter('fep_menu_buttons', function( $menu ){
        unset( $menu['announcements'] );
        return $menu;
    }, 99 );
    
Viewing 1 replies (of 1 total)

The topic ‘announcements’ is closed to new replies.