The Agile Store Locator plugin integrates with several popular SEO plugins to ensure compatibility and enhance SEO functionalities. Below is the documentation for the supported SEO plugins and how to disable these compatibilities if needed.
Supported SEO Plugins #
- Yoast SEO
- Rank Math
- SEOPress
- The SEO Framework
Disabling Compatibilities #
If you need to disable the compatibility with any of the supported SEO plugins, you can define specific constants in your wp-config.php
file. Here are the constants you can use:
- Yoast SEO: Define
ASL_DISABLE_YOAST
to disable compatibility. - Rank Math: Define
ASL_DISABLE_RANKMATH
to disable compatibility. - SEOPress: Define
ASL_DISABLE_SEOPRESS
to disable compatibility. - The SEO Framework: Define
ASL_DISABLE_SEOFRAMEWORK
to disable compatibility.
SEOPress Configuration #
For SEOPress compatibility, you need to define ASL_REGISTER_TYPE
in your wp-config.php
file. This ensures that the custom post type for Agile Store Locator is registered correctly with SEOPress.
define('ASL_REGISTER_TYPE', true);
Summary #
The Agile Store Locator plugin ensures compatibility with popular SEO plugins by adding custom hooks and filters. If you need to disable these compatibilities, you can do so by defining the appropriate constants in your wp-config.php
file.