This is what they gave me. I’m not a developer. I understand how WP works, but we are just a local Mom and Pop business.
Any ideas?
This guide is written for advanced users and developers.
One of the hidden features of Yoast SEO: Local is enhancing your website’s internal search results with your location content. In rare cases, the enhanced search results can conflict with other plugin or theme features. Therefore, Yoast SEO: Local version 7.1 introduced developer filters to disable these enhancements.
Developer code
The filters accept a true or false boolean.
yoast_local_seo_enhanced_search_enabled
yoast_local_seo_enhanced_search_result_enabled
To disable searching in location meta fields use:
add_filter( ‘yoast_local_seo_enhanced_search_enabled’, ‘__return_false’ );
To also disable markup for found locations use:
add_filter( ‘yoast_local_seo_enhanced_search_result_enabled’, ‘__return_false’ );