Forums › Forums › Search & Filter Pro › Not showing all results
Tagged: results
- This topic has 17 replies, 4 voices, and was last updated 6 months, 3 weeks ago by Trevor.
-
Anonymous(Private) January 11, 2019 at 8:21 pm #198736
Hello, thanks in advance for your help. Been breaking my head wondering what the issue is. A standard query will display all my posts within a custom posttype as seen here under “featured properties”
ranch.koredesigngroup.comThe search results are incomplete, they are not displaying all the new posts. The count by the author name shows the correct amount of posts but the results are not. Test here:
ranch.koredesigngroup.com/property
Thanks in advance
Trevor(Private) January 12, 2019 at 6:27 pm #198754If you are adding posts from a front end submissions tool, that tool must make a call to our plugin to tell it that the posts has changed. See this action:
This will trigger the same action in our plugin as though you had pressed the Update post button in the editor.
The problem is arising because the script you are using is probably not using the WordPress save_post() function.
Trevor(Private) May 7, 2019 at 3:24 pm #210274See this post (it might work):if using WP All Import, have you have included this code in functions.php?
add_action('pmxi_saved_post', 'wp_all_import_post_saved', 10, 1); function wp_all_import_post_saved($id) { do_action('search_filter_update_post_cache', $id); }
As this (should) update our cache each time you use that plugin.
Anonymous(Private) July 19, 2019 at 12:31 am #216671Hey there, I want to give you an update. I have added this on the functions.php but still do not have the cache updating. Are we sure there isnt some way i can systematically cause the plugin to update its cache on a specific cycle? This is causing issues.
-
AuthorPosts