daangroen
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] More than 2 search terms not working.I just found out that fuzzy search is disable by default.
The solution is to add the following script (as instructed by the “help” section:
add_filter( ‘relevanssi_fuzzy_query’, ‘rlv_partial_inside_words’ );
function rlv_partial_inside_words( $query ) {
return “(relevanssi.term LIKE ‘%#term#%’)”;
}Case closed!
Forum: Plugins
In reply to: [W3 Total Cache] All cache cleared after only 1 update.Hi there,
Done!
Best regards,
DaanForum: Plugins
In reply to: [W3 Total Cache] All cache cleared after only 1 update.Hi there,
Many thanks for your reply.
I just downgraded to WP 6.0.1. and the problem is still there. (so my early claim that the problem had something to do with the WP version is false). I even unchecked all checkboxes under “Purge Policy: Page Cache”, removed the path to the sitemap and set purge limit to 1.
Even now, when I open a post in the WP editor and hit “Save”, all page cache is flushed.. This should not happen, right?
I have another website which runs the exact same WP version and W3 total cache version, but there this problem is not present.
Update: I think I found the solution, there was a difference between the 2 websites.
I added “add_filter( ‘rank_math/sitemap/enable_caching’, ‘__return_false’);” to the functions, and now there the problem seems to be gone.This looks like a rankmath conflict with W3 Total cache.
Case can be closed, thanks again for your time!