…think it has). Since that too is a visible field, Relevanssi indexes it and uses it for excerpts. Thus the layout names appear in excerpts. The solution to this problem is to remove the root field, flexible_content, from the Relevanssi index and excerpts. That is a straightforward thing to do…With Advanced Custom Fields, sometimes Relevanssi picks up custom field names to include in the excerpts. This problem happens when you set Relevanssi to index all visible custom fields and have Flexible Content fields. Let’s assume there’s a Flexible Content field with the name flexible_content. It has a layout named……with a filter function: add_filter( ‘relevanssi_index_custom_fields’, ‘rlv_remove_unwanted’ ); function rlv_remove_unwanted( $fields ) { $unwanted_fields[] = ‘flexible_content’; return array_diff( $fields, $unwanted_fields ); } Add this function to your site and rebuild the index. Now the root field is no longer indexed or used in excerpts. Another approach is to stop using…