remove rankmath block on user profile

#528258
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Thank you for contacting the support and sorry for any inconvenience that might have been caused due to that.

    Please add the following code in functions.php file to remove the fields from the User profile page:

    
    add_filter( 'user_contactmethods', function( $contact_methods ) {
    	if ( isset( $contact_methods['twitter'] ) ) {
    		unset( $contact_methods['twitter'] );
    	}
    
    	if ( isset( $contact_methods['facebook'] ) ) {
    		unset( $contact_methods['facebook'] );
    	}
    
    	return $contact_methods;
    }, 11 );
    

    Hope that helps. Please don’t hesitate to let us know if you need our assistance with anything else.

    Thank You

    Thanks

    Hello,

    Glad that helped.

    Please feel free to reach out to us again in case you need any other assistance.

    We are here to help.

    Thank you.

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

The ticket ‘remove rankmath block on user profile’ is closed to new replies.