- Add an Extra Field for a Schema Type
- Enable/Disable Schema Markup
- Add Ratings Using Shortcode
- Disable a Specific Schema Markup
- Add Schema Markup on Subcategories
- Disable the White Label Settings
- Disable Corporate Contact Schema
- Remove Home List Item from Breadcrumblist Schema
- Remove Shop Item Link on Product Page
- Test a Schema Snippet
- Mapping Your Schema Fields
- Add an Extra Field for a Schema Type
- How to Use the Schema Pro plugin?
- All-in-one Schema Pro plugin
- Map Required fields with Custom Fields
- Create a Custom Fields
- Target Specific Areas of the Website
- Enable/Disable Schema Markup
- Add Ratings Using Shortcode
- How to Add a Schema markup for an Article on your website?
- What is the Difference between the Free and Pro Plugin?
- How to map fields with custom fields from third party plugins?
- Accept User Ratings from Users
- Update Schema Pro
- Register Your Copy of Schema Pro
- Organization Type in the Setup Wizard
- Schema Pro Setup Wizard
- Getting Started With Schema Pro
- How To Install Schema Pro Plugin
- Schema Markup for an Event page
- Schema Markup for a Review page
- Schema Markup for a Local Business Page
- Schema Markup for a Service Page
- Schema Markup for a Product Page
- Schema Markup for a Course page
- Schema Markup for a Recipe Page
- Schema Markup for a Person/ About Page
- Schema Markup for a Job Posting Page
- Schema Markup for a Video Object
Disable Corporate Contact Schema
With Schema Pro you get an option to add Corporate Contact schema. Here is the article that explains all settings.
This feature provides an option to enable ContactPoint schema on local_business and person schema type. This will add ContactPoint schema to both schema types at the same time. But if you wish to remove ContactPoint schema from one of the schema types, use the following filter.
Add the code into the child theme’s functions.php file.
add_filter( 'wp_schema_pro_contactpoint_local_business_schema_enabled', 'custom_disable_cp_schema', 10, 3 ); function custom_disable_cp_schema( $bool ) { return false; }
Important Note: You can replace $schema_type from the above filter. For example, to disable
Local_business schema, use the above filter as it is. But to disable person schema, replace filter like wp_schema_pro_contactpoint_person_schema_enabled
We don't respond to the article feedback, we use it to improve our support content.