remove RankMath from User profiles section

#746291
  • Resolved Jason Comparetto
    Rank Math free

    please see ticket# #735630
    I’m not sure what happened, but its back. i’m getting a bunch of Rank Math SEO stuff (twitter, facebook) in my user profiles.

    my Author SEO was actually set to DISABLED, so I ENABLED it and then switched the toggle as you recommended. i’ve cleared the server cache, but it remains

    Thank you for your help. we truly appreciate it.

    none of this code works either. your ChatGPT bot was not able to resolve this ticket last time.

    /**
    * Filter to remove Rank Math from user profiles
    */
    add_filter( ‘rank_math/user_profile/hide’, ‘__return_true’ );

    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 );

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    We apologize for the inconvenience you are facing with the Rank Math SEO elements appearing in your user profiles despite trying various solutions. Thank you for providing the code snippet you’ve tried to remove Rank Math from the user profiles section.

    To completely remove Rank Math SEO elements from user profiles, you can follow these steps:

    1. Activate Rank Math if it is not already enabled.
    2. Navigate to Appearance > Theme File Editor (for Classic Theme) or Tools > Theme File Editor (for Block Theme) inside your WordPress admin area.
      Navigate to Theme File Editor
    3. Add the provided code snippet to your theme’s functions.php or rank-math.php file and click the Update File button after adding the code.
      Add code to completely uninstall Rank Math
    4. Go to the Plugins page, find Rank Math, and proceed to deactivate and delete it. You will see an irreversible action notice due to the filter added to delete Rank Math data.
      Completely deactivate and delete Rank Math plugin

    After following these steps, Rank Math should be completely removed from your user profiles. If you encounter any further issues or need additional assistance, please feel free to reply to this ticket, and a human agent from the Rank Math Support team will assist you promptly.

    Thank you for your patience and cooperation. We are here to help you resolve this matter effectively.

    Sources:
    Sorry, You Are Not Allowed to Access This Page » Rank Math
    How to Completely Uninstall Rank Math From Your Website » Rank Math
    Rank Math Sitemap Issues and Their Fixes » Rank Math
    How to Disable All Rank Math Generated SEO Tags » Rank Math

    your bot just told me to go f myself (in a passive aggressive way). this is the 3rd time your bot gave me poor advice. read the response it gave me if you don’t believe me.

    i really like your product, but the bot support is really nasty. i don’t understand why you would let it run your company like this.

    i’m just looking to remove a little section of your plugin, not trying to delete your plugin ??

    Hello,

    Thank you for contacting Rank Math support.

    Please use the following filter to remove the social profile section added by our plugin:

    add_filter('user_contactmethods', function ($contactmethods){
    			unset($contactmethods['twitter'] );
    			unset($contactmethods['facebook'] );
    			unset($contactmethods['additional_profile_urls']);
    			
    			return $contactmethods;			
    }, 999, 1);

    Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.

    thank you that worked

    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 or TrustPilot 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 5 replies - 1 through 5 (of 5 total)

The ticket ‘remove RankMath from User profiles section’ is closed to new replies.