Back to list of all filter and action hooks for Address Book for WooCommerce.
Description #
Controls whether Address Book should load compatibility features for a specific plugin.
Modifiers #
{$plugin_slug}(string) The plugin folder name/slug. Example:fluid-checkout-pro.
Parameters #
$enabled(bool) Whether the compatibility features for this plugin should be enabled or not. Defaults totrue.
Examples #
/**
* Disable compatibility for a specific plugin
*/
add_filter( 'fc_adb_enable_compat_plugin_fluid-checkout-pro', '__return_false', 10 );
