Third Party Plugin Endpoints Compatibility
This article belongs to our plugin : WooCommerce Customize My account Pro
Plugin already supports popular WooCommerce Plugins inbuilt endpoints. So far we have declared 100% compatibility with these plugins.
- Tera Wallet
- Subscriptions For WooCommerce by Wp Swings
- Ultimate Auction For WooCommerce by Nitesh Singh
- Smart Coupons For WooCommerce Coupons by WebToffee
If you are a Plugin developer or User of any such plugin you can simply add compatibilty by adding few lines to your plugin or to your code snippet.
add_filter('wcmamtx_overide_supported_plugin_slugs','wcmamtx_modify_existing_content_function',10,1);
function wcmamtx_modify_existing_content_function($list) {
$endpoint_key = 'your-endpoint-key'; //key of your endpoint like http://yourdomain.com/my-account/wc-wallet/ where wc-wallet is the key
$list[$endpoint_key] = array('your-custom-plugin/index.php','your-custom-plugin-pro/index.php'); //path where your plugin header exists
return $list;
}