Jaideep Asrani
Forum Replies Created
-
Forum: Reviews
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Awesome pluginHello @kaan73,
Thank you so much for your kind words and support! We’re delighted to hear you’re enjoying the plugin. Your encouragement means a lot to the entire team and motivates us to keep improving.
Hello @saeedmiri,
Thank you for contacting Rank Math support.
Video Sitemap is a PRO feature and it is not allowed to provide support for paid features using the WP.org forums. Please email us at support@rankmath.com, so we can help you fix the issue you’re facing.
Looking forward to helping you.
Hello @simplesteps,
Thank you for contacting Rank Math support.
You can change the Display Name in the user profile setting to something else than the username and it will be updated in the Schema. If you want to remove the Person Schema from the site, you can use the following filter:
add_filter( 'rank_math/json_ld', function( $data, $jsonld ) {
unset($data['ProfilePage']);
return $data;
}, 99, 2);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.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] JS ErrorHello @babrees,
We have shared your findings with the development team, and will let you know once we have an update.
Please do not hesitate to let us know if you need our assistance with anything else.
Thank you.
Hello @satishjohnsat,
Thank you for contacting Rank Math support.
We can check that the homepage is working fine with Rank Math enabled. If the issue is related to a specific URL, please share it with us, so we can check this further.
Looking forward to helping you.
Hello @rocketmartue,
The visual revisions are working fine on our end when Rank Math is enabled. We were not able to reproduce it. Please confirm if you faced this issue with Rank Math on your site.
Looking forward to helping you.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] JS ErrorHello,
Thank you for contacting Rank Math support.
Please use the following link to record and share a screencast of the issue so we can check and assist you further: https://loom.com/
Looking forward to helping you.Hello @roogie27,
We are glad that the issue has been resolved.
Please do not hesitate to let us know if you need our assistance with anything else.
Thank you.
Hello @juikens1,
Thank you for your kind words! We’re thrilled to hear that Rank Math has made SEO easier to understand and helped improve your site’s visibility. We truly appreciate your recommendation and support!
Please do not hesitate to let us know if you need our assistance with anything else.
Hello @bajlazzo,
We can check that you have already created a support topic and our support team has replied to it. You must have received an email. Please check it, and share the required details, so we can assist you further.
Thank you.
Forum: Reviews
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Best in classHello @tomquarmby,
Glad to hear that! We’ve worked hard to make Rank Math powerful yet easy to use, so it’s always great to hear when users find it a better fit for their SEO needs. Thanks for the support, and if you ever need help getting even more out of Rank Math, we’re here to help!
Hello @docmartinhk,
Thank you for giving Rank Math a try! We’re glad to hear you’re finding the features and blog content useful. SEO improvements often take some time to show results, especially after switching plugins, so it’s not unusual not to see an immediate increase in traffic.
It’s also great to hear that you enjoyed our blog article. We aim to provide practical, well-rounded SEO advice that helps users improve their websites, whether or not a specific Rank Math feature is involved. Thanks for your feedback, and we wish you continued success with your SEO efforts!
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] Super PlugInHello @rockstroh,
Thank you for your feedback! We’re glad to hear that you find Rank Math clear, well-organized, and useful. We appreciate your support and are always here if you need any assistance.
Hello @aimdoll,
Thank you so much for your kind words and for taking the time to share your feedback!
We’re delighted to hear that you’re enjoying both the plugin and the support experience. Feedback like yours motivates our team to continue improving Rank Math and providing the best possible assistance to our users.
If you ever need help with anything, we’re always here to assist.
Thanks again for choosing Rank Math!
Hello @iransound,
Thank you for contacting Rank Math support.
It isn’t possible to change the output of the
%page%variable. However, you can use the following filter to create a custom variable that doesn’t include the separator:add_action( 'rank_math/vars/register_extra_replacements', function() { rank_math_register_var_replacement( 'paged', [ 'name' => esc_html__( 'Page Number', 'rank-math' ), 'description' => esc_html__( 'Current page and total pages', 'rank-math' ), 'variable' => 'paged', 'example' => paged_callback(), ], 'paged_callback' ); } ); function paged_callback() { global $wp_query; $current_page = max( 1, get_query_var( 'paged' ) ); $total_pages = max( 1, $wp_query->max_num_pages ); return sprintf( 'Page %d of %d', $current_page, $total_pages ); }Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/
Once done, you can use the
%paged%variable in the meta description.Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.