Home › Forums › Front End PM PRO › Front End PM – Ultimate Member Integration – Account “Message” Tab › Reply To: Front End PM – Ultimate Member Integration – Account “Message” Tab
		June 28, 2018 at 2:26 am
		
		#15372
		
		
		
	
		
		Shamim Hasan
	Keymaster
		
		
	Add following code in your theme’s (child theme’s if any) functions.php
add_filter( 'um_account_page_default_tabs_hook', function( $tabs ){
	unset( $tabs[800]['fep-um'] );
	return $tabs;
}, 110 );