[SOLVED] Rank math position issue

When we write a post in Gutenberg editor That time rank math (seo plugin) appears in the side. I want the Rank Math to appear below the post.


I am using Generate Press Theme and rank mathe seo plugin

1 Like

It is quite unfortunate that this change has caused a setback in your workflow. Please add the following code snippet to your theme’s functions.php file to rollback to the classic metabox layout:

/**
 * Disable Gutenberg Sidebar Integration
 */
add_filter( 'rank_math/gutenberg/enabled', '__return_false' );

The latest update brought with it a few changes.The Rank Math SEO options are now available from the Gutenberg sidebar. Please take a look at this screencast for more info : https://i.rankmath.com/U44EB5
You can disable this feature by adding the following code to your theme’s functions.php file:

2 Likes