Forums › Forums › Search & Filter Pro › Missing products in results
- This topic has 17 replies, 2 voices, and was last updated 4 years ago by Trevor.
-
Trevor(Private) October 21, 2020 at 5:28 pm #263670
Getting closer, but not there yet. Make sure that the user display name is their business name (that you want to be searchable), and not the person’s name. I think the User Description is the textarea at the bottom, so you could use that maybe. But, after you have checked them all (there are a lot), if you make changes, rebuild the Relevanssi index.
Trevor(Private) October 26, 2020 at 12:07 pm #264108Yes, you will need to follow this guidance:
https://www.relevanssi.com/knowledge-base/wp-import-compatibility/
You could probably add just this one line:
relevanssi_index_doc($id, true, relevanssi_get_custom_fields(), true);
That’s what I would do, so it would look like this:
add_action('pmxi_saved_post', 'wp_all_import_post_saved', 1000, 1); function wp_all_import_post_saved($id) { do_action('search_filter_update_post_cache', $id); relevanssi_index_doc($id, true, relevanssi_get_custom_fields(), true); }
-
AuthorPosts