Rank math in user-edit.php

#642352
  • Resolved Vincent
    Rank Math free

    Hi i noticed that rankmath add custom field in user-edit.php (see the image attached)
    https://zupimages.net/up/23/39/77xo.jpg
    image

    The thing is that i don’t wan’t this filed visible in the profile of the user because they are not supposed to see this. Please give me a settings or a hooks in order to hide this.

    Thanks

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

    Thank you for contacting us and sorry for any inconvenience that might have been caused due to this issue.

    Please add the following filter code to your site to remove those fields from 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'] );
    	}
    	if ( isset( $contact_methods['additional_profile_urls'] ) ) {
    		unset( $contact_methods['additional_profile_urls'] );
    	}
    	return $contact_methods;
    }, 11 );

    You can learn how to add this code to your website here: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Let us know how this goes. Please let us know if you have further questions or concerns.

    Thank you.

    Vincent
    Rank Math free

    It works, thanks a lot

    Hello,

    We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

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

The ticket ‘Rank math in user-edit.php’ is closed to new replies.