How To Disable Rank Math Plugin on the Asgaros Forum Page in WordPress

#783616
  • Resolved BuddyBud
    Rank Math free

    So there is a conflict on my Asgaros Forum with SEO because Asgaros has a built in SEO function, and Rank Math is trying to override this function on all pages of my forum. For the life of me I can’t find ANYWHERE on how to completely disable Rank Math on a single page. The Asgaros Forum is a shortcode on my “community” page so obviously Rank Math is going to try and override all posts on this “page” with the same description and title.

    Anyone have any idea how I can disable Rank Math on this one page?

    I’ve tried everything, can’t find any info on this topic.

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

    I apologize for the issue you are facing with Rank Math conflicting with the built-in SEO function of Asgaros Forum on your WordPress site. To disable Rank Math on a specific page, you can follow these steps:

    1. Identify the specific page where you want to disable Rank Math. In your case, it’s the “community” page containing the Asgaros Forum shortcode.

    2. Navigate to your WordPress Dashboard and edit the page where the Asgaros Forum is embedded.

    3. In the page editor, locate the Rank Math SEO settings box. You should see options to customize the SEO settings for that specific page.

    4. Look for an option to disable Rank Math SEO analysis or meta tags specifically for that page. This option may vary depending on your Rank Math settings and version.

    5. Save the changes to ensure that Rank Math is disabled for that particular page.

    If you are unable to find the specific settings to disable Rank Math on a single page, please consider reaching out to our dedicated support team by clicking here. They are available 24/7 and will assist you in resolving this conflict between Rank Math and Asgaros Forum on your WordPress site.

    Thank you for bringing this concern to our attention, and we appreciate your patience as we work to resolve this issue for you.

    If you have any further questions or need additional assistance, feel free to let us know!

    Sources:
    How to Disable All Rank Math Generated SEO Tags » Rank Math
    Rank Math Plugin Requirements for WordPress Websites
    How to Fix Duplicate Field “FAQPage” Error » Rank Math
    How to Disable Rank Math SEO Content Tests » Rank Math

    BuddyBud
    Rank Math free

    Hello,

    I have updated the sensitive data as requested. Can you please check further?

    Thank you.

    BuddyBud
    Rank Math free

    “Look for an option to disable Rank Math SEO analysis or meta tags specifically for that page. This option may vary depending on your Rank Math settings and version.”

    I do not see any option to disable Rank Math on this specific page.

    Hello,

    In this case, you can add this filter on your site to disable Rank Math on that specific page:

    add_action( 'wp_head', function() {
    	$url = home_url($_SERVER['REQUEST_URI']);
    	if (strpos($url, 'comunidad') != false) {
    	remove_all_actions( 'rank_math/head' );
    	}
    }, 1);

    If you’re unsure how to add this code, you can follow this guide:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Please note that the filter runs when the page loads, so you may need to view the page’s source code to ensure that Rank Math is not generating any meta tags.

    Hope that helps.

    BuddyBud
    Rank Math free

    Thank you <3

    does the URL need to be the full URL or just comunidad?

    https://calderitasbeach.com/comunidad/

    add_action( 'wp_head', function() {
    	$url = home_url($_SERVER['REQUEST_URI']);
    	if (strpos($url, 'comunidad') != false) {
    	remove_all_actions( 'rank_math/head' );
    	}
    }, 1);

    or

    add_action( 'wp_head', function() {
    	$url = home_url($_SERVER['REQUEST_URI']);
    	if (strpos($url, 'https://calderitasbeach.com/comunidad/') != false) {
    	remove_all_actions( 'rank_math/head' );
    	}
    }, 1);

    Hello,

    You should use the first one and not the full URL.

    However, we checked the URL, and Rank Math is no longer including any meta tags in the page’s source code.

    Looking forward to helping you.

    BuddyBud
    Rank Math free

    Thanks so much! Love your plugin. After 15 years on wordpress and SEO its by far the cleanest. Fast support too! Much love.

    Hello,

    We are glad to hear that this issue has been resolved. Thank you for letting us know. This ticket will be closed now, but you can always open a new one if you have any other questions or concerns. We are here to help you with anything related to Rank Math.

    We appreciate your patience and cooperation throughout this process.

    Thank you for choosing Rank Math.

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

The ticket ‘How To Disable Rank Math Plugin on the Asgaros Forum Page in WordPress’ is closed to new replies.