Forums › Forums › Search & Filter Pro › Not showing all results
Tagged: results
- This topic has 17 replies, 4 voices, and was last updated 1 year, 6 months ago by
Trevor.
-
Trevor(Private) January 12, 2019 at 6:27 pm #198754
If 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