epl_features_taxonomy_link_filter
When using custom listing features and adding your property features these output links to the feature and sometimes you want to disable the links to these features.
Default output of property features with links.
How to remove the links from your added features
Add this simple function to your theme functions file to disable the links.
function my_epl_disable_feature_links() { return false; } add_filter( 'epl_features_taxonomy_link_filter' , 'my_epl_disable_feature_links' );
Links removed for custom features.