Rank Math Support
Forum Replies Created
-
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Missing XML sitemapHello @wonderwooman,
Thank you for contacting Rank Math support.
Please share the site URL so we can check and assist you further.
Looking forward to helping you.Hello @nagatheme,
Thank you for contacting Rank Math support.
We are aware of the issue, and it will be fixed in the next update. For now, please navigate to WP Dashboard > Rank Math SEO > Dashboard and disable the React UI module to fix the issue on your site.
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.Hello @torvor,
Thank you for bringing this to our attention.
Could you please let us know the exact steps that led to this error being generated? For example, was it triggered while performing a specific action or visiting a particular page? This will help us narrow down the cause.
If you’d like us to take a closer look at the issue in detail, please follow this guide on how to create a technical support ticket: https://ww.wp.xz.cn/support/topic/attention-read-this-before-posting/
Once we have that information, we’ll be able to assist you further.Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] sitemap questionHello @mcdeth,
By default, the sitemap cache in Rank Math is stored as a transient and is automatically cleared on content updates (e.g., add/edit/delete). If there are no changes, it remains cached indefinitely and there isn’t a fixed expiration period.
At the moment, we don’t provide an API to flush the sitemap cache programmatically, but you can use therank_math/sitemap/enable_cachingfilter to disable caching entirely if needed.
Don’t hesitate to get in touch with us if you have any other questions.Hello @nitrospectide,
Thank you for contacting Rank Math support.
You can modify and use the following filter to exclude the posts with a specific term from the sitemap:add_filter( 'rank_math/sitemap/entry', function( $url, $type, $object ){ return $url;}, 10, 3 );If you want us to modify it, please share the taxonomy and term name.
Looking forward to helping you.Hello @mittwaffen,
Thank you for contacting support.
The issues with the slugs and Elementor was addressed in a plugin release from July 31st. If you still are facing this issue please get in touch with our development team using the following email address: [email protected]
Looking forward to helping you.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Page Indexing IssueHello @krishkerckhoffs,
From the URLs you shared, those are your add-to-cart and add-to-wishlist links.
In this case, you can use this filter to set them to noindex:add_filter( 'rank_math/frontend/robots', function( $robots ) {
$url = home_url( $_SERVER['REQUEST_URI'] );
if( (strpos($url,'?add_to_cart=') !== false || strpos($url,'?add_to_wishlist=')) {
$robots['index'] = 'noindex';
$robots['follow'] = 'nofollow';
}
return $robots;
});Here’s a guide you can follow to apply that:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
Hope that helps.Hello @michaelsmartmove,
Thank you for contacting support.
We released a quick update that aims to fix this issue. We recommend updating the Free plugin to the latest version: https://rankmath.com/changelog/free
Don’t hesitate to get in touch if you have any other questions.
Hello @mjaitly123,
The image URLs of your site are returning a 400 Bad Request error. Here is a screenshot for your reference: https://i.rankmath.com/i/YRsngm
This means that the requests to those images don’t even touch the WordPress installation so we recommend resolving that first to make sure the images are accessible and let us know after that so we can check the situation again.
Thank you.Hello @yi100,
Thank you for contacting Rank Math support.
Our plugin redirects the 404 URLs to the homepage if you have set it as the Fallback Behavior in the Redirections settings of our plugin. However, if our plugin is disabled or if you have set the Fallback Behavior as Default 404 in WP Dashboard > Rank Math SEO > General Settings > Redirections, then our plugin shouldn’t affect the 404 URLs.
Please share the site URL and make sure that you have disabled our plugin or its Redirections module in WP Dashboard > Rank Math SEO > Dashboard, so we can check this further.
Looking forward to helping you.Hello @klmnweb,
Thank you for contacting Rank Math support.
You can use the following filter to remove our plugin’s fields from the user profile:add_filter( 'user_contactmethods', function( $contactmethods ) {
foreach ( [ 'twitter', 'facebook', 'additional_profile_urls' ] as $method ) {
if ( isset( $contactmethods[ $method ] ) ) {
unset( $contactmethods[ $method ] );
}
}
return $contactmethods;
}, 11 );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.Hello @pixelterritory,
The issue has been fixed in version 1.0.250 of our plugin: https://rankmath.com/changelog/free/
Please update the plugin to the latest version to fix the issue on your site.
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.Forum: Plugins
In reply to: [Instant Indexing for Google] errore pluginHello @segreteriaeogea,
Thank you for contacting Rank Math support.
The deprecated notices you’re seeing are related to the Google API Client library used by the Instant Indexing plugin. These are warnings introduced in newer versions of PHP, which is version 8.2 and up, but they don’t affect the functionality of the plugin. In the meantime, you can safely ignore them or suppress deprecated warnings in your PHP configuration.
Don’t hesitate to get in touch with us if you have any other questions.Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Page Indexing IssueHello @krishkerckhoffs,
Thank you for contacting Rank Math support.- Even if you block the URLs using the robots.txt file, Google can still index them. You haven’t shared the URLs that are under the “Indexed though blocked by robots.txt” status. Please share some URLs so we can suggest a filter to set them to noindex.
- The URLs under the “Excluded by Noindex tag” status are the product tag URLs. Since you have set them to noindex, you can ignore them. Google must be discovering them from the internal links but won’t index them as they are set to noindex.
- The rule to block add_to_cart pages in your robots.txt file needs to be modified. You should use
Disallow: /*?add-to-cart=*instead ofDisallow: /*?add-to-cart=.
Looking forward to helping you.
Hello @robin-labadie,
Thank you for contacting Rank Math support.
Our development team has identified this as a bug, and it will be fixed soon. We will let you know once we release the update with a fix for this issue.
Please do not hesitate to let us know if you need our assistance with anything else in the meantime.