Hello,
We apologize for the issue you are facing while trying to disable the Local SEO module in Rank Math. If the button is stuck in the loading process, it may be a technical issue that requires further investigation.
Here’s how you can typically disable the Local SEO module:
- Navigate to the Rank Math Dashboard in your WordPress admin area by going to Rank Math SEO → Dashboard.
- In the Modules section, find the Local SEO module and click the button to disable it.

If the button continues to load without responding, please reply to this ticket and include your site URL so that a human agent from our support team can assist you further. Thank you for raising this concern!
This is an automated reply from Rank Math Support Bot. Your ticket has been assigned to a human agent and we will get back to you shortly.
Still its loading,
URL : privatecapitallenders.com
even i tried updating via code its not working
Hi Team, is there any way to get in touch with you
@context”: “https://schema.org”,
“@graph”: [
{
“@type”: “Organization”,
“@id”: “https://privatecapitallenders.com/#organization”,
“name”: “Private Capital Lenders”,
“logo”: {
“@type”: “ImageObject”,
“@id”: “https://privatecapitallenders.com/#logo”,
“url”: “https://privatecapitallenders.com/xxxxxxxxxxxx”,
“contentUrl”: “https://privatecapitallenderxxxxxxxxxxxx,
“caption”: “Private Capital Lenders”,
“inLanguage”: “en-US”
}
},
can i know how can i remove this
Hello,
Apologies for the delay as we prioritize older tickets, and whenever you post a reply, your ticket gets bumped to the top.
If you want to remove the Organization schema from your whole site, you should add this filter:
add_filter( 'rank_math/json_ld', function( $data, $jsonld ) {
if ( ! isset( $data['publisher'] ) ) {
return $data;
} unset( $data['publisher'] );
unset( $data['place'] ); return $data;
}, 99, 2);
Here’s a guide you can follow to apply that:
https://rankmath.com/kb/wordpress-hooks-actions-filters/
Looking forward to helping you.