Hello. Thank you for contacting the Toolset support.
It seems you setup a text search on custom field. Can you please share screenshot of "Query Filter" section of of your view?
Or you can share admin access details so I can check whats going wrong with your setup.
*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.
I have set the next reply to private which means only you and I have access to it.
I checked and I found that the text search filter you added is for the checkboxes field type. Checkboxes fields are special fields and the value of the checkboxes fields are stored as serialized array within the database. It's not advisable to build text search on the checkboxes fields.
There are two options, either you should change the field type to another field type but then you will not have multiple choices like checkboxes offers. I would recommend that you should create a additional field that should hold the values for selected checkboxes options and then use that custom field for search. You can use the save_post action so when post is published or updated (saved) you should copy the selected checkboxes options to the newly single line custom field you created.
Then, I edit the following post: hidden link
And clicked on Update button and I see when I update the post it copy the selected checkboxes option values from field "Plan Features" to newly created field "Store Plan Features Values". Screenshot: hidden link
Note:
You will have to update every post you have for post type "plan" so that the selected checkboxes option values will be copy to the newly created field "Store Plan Features Values".
With the following view, I've added the query filter for the newly created field "Store Plan Features Values" that actually displays the view's output:
=> hidden link
Store Plan Features Values is a string like URL_PARAM(wpv-wpcf-store-plan-features-values)
Then I tried to search and I can see as currently, I've updated one post which has the values stored within the field "Store Plan Features Values".
- hidden link
When I search with keyword "fireplace", I can see the "Rivendell" post in result for which the "Store Plan Features Values" field has values.
=> hidden link
You should update all posts and it should work normal.