Rank Math Support
Forum Replies Created
-
Hello @dmitriamartin,
Thank you for contacting Rank Math support and sorry for the inconvenience caused in canceling your subscription.
FastSpring, our payment provider manages payments and subscriptions and that’s why the subscriptions need to be canceled in the FastSpring account that is created during the checkout process. Sometimes it doesn’t work due to the mismatch between the email address used to create Rank Math and FastSpring accounts. You can get in touch with our accounts team at [email protected] and they will assist you in canceling your subscription (if you haven’t already done that).
We sincerely appreciate the feedback and will discuss this with FastSpring to make subscription management more user-friendly.
Please do not hesitate to let us know if you need our assistance with anything else.
Forum: Reviews
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] TerribleHello @ctlprogrammer,
Sorry for the experience you had with our plugin and support so far.
We understand it can be frustrating when something doesn’t work as expected. Can you please share the URL of the support topic you created in our forum so we can check it and help you fix the issues you are facing?
Looking forward to helping you.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Blog paginationHello @efimov2025,
Thank you for contacting Rank Math support.
Please note that the paginations are handled by your theme. If the issue is related to the duplicate title an description of the paginated pages, you should enter the %page% variable in the SEO title and description of the main page to make the metadata unique.
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.
Hello @koolpal007,
Thank you for contacting Rank Math support.
The Disable Cache filter is used to disable the cache of the Analytics module. We sincerely appreciate your feedback and have forwarded it to the concerned team.
Please do not hesitate to let us know if you need our assistance with anything else.
Hello @tw1l1ght,
Thank you for contacting Rank Math support.
When you have an excerpt, it will override the global settings and will be used for the meta description. To change this behavior, please add the following filter to your site:
add_action( 'rank_math/frontend/description', function( $description ) {
global $post;
$desc = RankMath\Post::get_meta( 'description', $post->ID );
if ( get_post_type() == 'Your Post Type') { //replace with the name of CPT
$desc = RankMath\Helper::get_settings( "titles.pt_{$post->post_type}_description" );
if ( $desc ) {
return RankMath\Helper::replace_vars( $desc, $post );
}
}
return $description;
});Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/
Please note that the correct description will be added in the front end. In the snippet editor, you will still see the manual description.
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.
Hello @twvania,
Thank you for contacting Rank Math support.
We are currently working on this. You can keep an eye on our changelog to get notified about the latest features and updates. https://rankmath.com/changelog/
Please do not hesitate to let us know if you need our assistance with anything else.
Hello @bibberle,
We are super happy that this resolved your issue.
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.
Hello @yi100,
Here is a filter to create a variable to output the title of the three latest posts of a category:add_action('rank_math/vars/register_extra_replacements', function () {
rank_math_register_var_replacement(
'post_titles',
[
'name' => esc_html__('Post Titles', 'rank-math'),
'description' => esc_html__('Title of posts', 'rank-math'),
'variable' => 'post_titles',
'example' => post_titles_callback(),
],
'post_titles_callback'
);
});
function post_titles_callback() {
if (is_category()) {
$cat = get_queried_object_id();
$myposts = get_posts(array('numberposts' => 3, 'offset' => 0, 'category__in' => array($cat), 'post_status'=>'publish', 'order'=>'DESC' ));
$titles = [];
foreach ($myposts as $post) {
$titles[] = get_the_title($post->ID);
}
return implode(', ', $titles);
}
}You can use the %post_titles% variable after adding the filter.
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.
Hello @braino,
Thank you for contacting Rank Math support.
We are aware of the issue and working on a solution. Please disable the notice by setting the WP_DEBUG_DISPLAY and WP_DEBUG_LOG constants to false in the wp-config.php file. If you don’t want to do that, please add the following filter to rank-math.php file.
add_filter( 'doing_it_wrong_trigger_error', '__return_false' );
Here is how to create the rank-math.php file: https://rankmath.com/kb/wordpress-hooks-actions-filters/#rank-math-php-file
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.
Hello,
We are really sorry about this. We have identified the issue and plan on fixing it with the next update.
We would really appreciate your patience in the meantime.
Hello @paxmont,
Thank you for contacting Rank Math support.
We are aware of the issue and working on a solution. Please disable the notice by setting the WP_DEBUG_DISPLAY and WP_DEBUG_LOG constants to false in the wp-config.php file. If you don’t want to do that, please add the following filter to rank-math.php file.
add_filter( 'doing_it_wrong_trigger_error', '__return_false' );
Here is how to create the rank-math.php file: https://rankmath.com/kb/wordpress-hooks-actions-filters/#rank-math-php-file
Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.
Hello @scooterlord,
Thank you for contacting Rank Math support.
Please share a screenshot of the Redirections section ( WP Dashboard > Rank Math SEO > Redirections ) using a tool like https://imgur.com/. Also, navigate to WP Dashboard > Rank Math SEO > Status & Tools > System Status > Copy System Info to Clipboard and share it with us so we can check and assist you further.
Looking forward to helping you.
Hello @albarosa,
Thank you for contacting Rank Math support.
Our plugin can’t control why the post URLs are not working when visiting them using Facebook posts. Our plugin’s meta tags are only used to generate the link preview. The fb:app_id tag also doesn’t have anything to do with the issue. You can share an affected URL so we can check if we can provide you further insights that might help you fix the issue.
Looking forward to helping you.
Hello @yi100,
Thank you for contacting Rank Math support.
You can use the following filter to use the latest post titles as the category description:
add_filter('rank_math/frontend/description', function ($description) {
if (is_category()) {
$cat = get_queried_object_id();
$myposts = get_posts(array('numberposts' => 3, 'offset' => 0, 'category__in' => array($cat), 'post_status'=>'publish', 'order'=>'DESC' ));
$titles = [];
foreach ($myposts as $post) {
$titles[] = get_the_title($post->ID);
}
return $titles[0]. ', ' .$titles[1]. ', '.$titles[2];
}
return $description;
});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 @bibberle,
The queries are correct. Please note that the first query will also remove the primary category you have set for the posts(if you’re using the Primary Taxonomy feature of our plugin). You must add them again after running the query. Also, make sure to take a complete database backup before running the queries to be safe in case something goes wrong.
Please do not hesitate to let us know if you need our assistance with anything else.