• Resolved James Hunt

    (@bonkerz)


    Is it possible to move the position of the RankMath meta box when on the Edit User Profile screen of the admin?
    I am using ACF to add custom fields to the Profile page, but these are positioned below the RankMath meta boxes, which makes the user profile editing experience really strange.

    Current order:

    Contact Info
    Account Management
    Application Passwords
    RankMath
    Custom Fields

    Preferred order:

    Contact Info
    Account Management
    Application Passwords
    Custom Fields
    RankMath

    I wonder if its possible to edit the hook/action you are using to insert the meta boxes to a priority that would place it after the custom fields.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @bonkerz,

    Thank you for contacting the support.

    If you are using the Classic Editor, you can simply drag the meta box to your preferred position and update the post. Once done, the position of the meta box will change for all the posts.

    To drag, you need to click and hold at the title bar of the meta box. https://i.rankmath.com/BvpKk6

    Hope that helps. Let us know if you need any other assistance.

    Thread Starter James Hunt

    (@bonkerz)

    On the User Profile there is no ability to drag and drop the meta box, regardless of using the Classic Editor or not.

    Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @bonkerz,

    In this case, please refer to this filter code to lower the priority order of Rank Math’s meta box:

    add_filter( 'rank_math/metabox/priority', function( $priority ) {
    return 'low';
    });

    Here’s how you can apply a filter code on your website:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change position of RankMath Meta box on User Profile?’ is closed to new replies.