• Resolved tonnick0033

    (@tonnick0033)


    Hello
    I would need to remove the possibility to write/sed new message from mailbox page. I added shortcode in website in order to create a form with new message directly to the users, so, the option to write a new message to any user is not needed.

    how can I remove the “new message” button from mailbox page ? (css is not really the best option). thx !

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

    (@shamim51)

    add following code in your theme’s (child theme’s if your are using) functions.php

    add_filter( 'fep_menu_buttons', function( $menu ){
    	unset( $menu['newmessage'] );
    	return $menu;
    }, 99 );
    
    Thread Starter tonnick0033

    (@tonnick0033)

    ok thx !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to remove new message only from mailbox page’ is closed to new replies.