Hi,
Today evening i tired to check SEO Score, but unable to do it due to error called url 28. Find attach link of screen shot. i also tried uing deactivating my cache plugin (litespeed). Please advise
Thanks
Hi,
Today i got the feedback from one of my visiter that my catagory link given on home page is not opening, i verified and found cause is Rank math plugin, Tried making changes in redirections & links, but not success. finally i have to disable the plugin and then issues automatically resloved. Hence My Rank math plugin is currently de-active.
The Links was missing ‘/product-category/’ slug before category name which was not working, some of the link were working which having ‘/product-category/’.
Request you to please look into. as i have starting feeling fade-up with this all. Response on support has also become very lenient. Would you please help me out. or give me a clear state to move to somewhere.
I really doesn’t want to move from rank math as already invested lot of time. please understand.
Thanks
Dheeraj
Hello,
I couldn’t find any URL with an issue after activating Rank math on your site. Please share the URL you find to have an issue in the sensitive section so we can dig further into this.
Concerning your SEO analysis issue, I edited the following plugin file:
/includes/modules/seo-analysis/class-seo-analyzer.php
changed the following line (line number 375):
$request = wp_remote_get( $api_url, [ 'timeout' => 20 ] );
Increased the timeout value to 60:
$request = wp_remote_get( $api_url, [ ‘timeout’ => 60 ] );
The SEO analysis should start working as expected once you connect your site to Rank math..
Looking forward to helping you. Thank you.
Hi,
Thanks for doing changes, Link issues resloved automatically and SEO Score Analysis also start performing. But Most Important issues is yet to fixed for which i created this Support Tickek, that is Woocommerce Full Description.
The Variable is set in default setting, same is showing in description meta filed when go to product edit but not fetching content unless we re-insert the same variable by replace the same variable set as default.
My Current exersice to get the meta description in place by editing each product to paste %woo_full_desc% in meta section. I have thousands of Products to setup this. Can’t do this everytime. Please Please extend your support, this is must have feature for any ecommerce store.
Many Requests, Kindly look into.
Hello,
Please add the following code in your active theme or child theme functions.php to use description from product global settings. The provided access doesn’t seem to be able to update the theme files.
/**
* Use the Description from Global Setting, if the description is missing in the Post metabox
*/
add_action( 'rank_math/frontend/description', function( $description ) {
global $post;
$desc = RankMath\Post::get_meta( 'description', $post->ID );
if ( ! $desc && is_product()) {
$desc = RankMath\Helper::get_settings( "titles.pt_{$post->post_type}_description" );
if ( $desc) {
return RankMath\Helper::replace_vars( $desc, $post );
}
}
return $description;
});
Please note that this will only use the description set in Global settings if there is no description set on the product. If you wish to override on all products, you can remove the !desc if check.
Hope that helps. If you have any further question(s), please let us know. Thank you.
Hello,
Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.
If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.
Thank you.