Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterI changed nothing within the plugin. Do you have the latest release installed (4.26.13)? With that you no longer need custom CSS only these options, as that has the exact matches fixed.
Ernest Marcinko
KeymasterHi,
I’m afraid this may not be possible. I could go into pages on pages to explain why, but to put it simply it’s basically a database query limitation.
I see a possible solution though via a small custom code snippet, but it’s no magic. This snippet will separate/put spaces silently before sending the query between numbers and letters, so for most cases should yield the same output.
add_filter( 'asp_search_phrase_before_cleaning', function ( $phrase ) { preg_match_all('/([0-9]+|[a-zA-Z]+)/', $phrase, $matches); return implode(' ', $matches[1]); } );Try adding this code via the Code Snippets plugin or to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.
Ernest Marcinko
KeymasterHi,
I can confirm, WP Rocket minify causes the problem. Their minification incorrectly processes one of the files and basically causes it to malfunction.
Please add this to the Excluded Javascript Files input:
asp-(.*).jsLike so: https://imgur.com/mQ4OVF4
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterJust in case I have added a wildcard to WP Rocket to not minify the plugin files, as the sources are already minified and that usually doesn’t end well: https://i.imgur.com/mQ4OVF4.png
Ernest Marcinko
KeymasterHi Douglas,
It works all right on my end: https://i.imgur.com/dgjuaok.png
I tried multiple browsers, but everything seems to be all right. Try clearing up your browser cache too, that tends to be very persistent.August 2, 2024 at 10:49 am in reply to: Malware detection on my site after installing your plugin #48884Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterNo problem, it happens a lot more often than you think!
Cache plugins should automatically purge when there is a plugin update, I don’t know why they don’t do that. It would prevent so many issues 🙂
Ernest Marcinko
KeymasterSure, of course!
– Results count to 5000: https://i.imgur.com/0IpUpID.png
– Limit to 1000: https://i.imgur.com/qo6WyU9.pngThat’s it basically.
Ernest Marcinko
KeymasterYou cannot access this content.
August 1, 2024 at 12:00 pm in reply to: API REST stops working in version 4.26.12 – 2024-06-25 #48859Ernest Marcinko
KeymasterYes – the issue had been fixed in 4.26.13.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
Thank you very much for the details. After clearing the site cache (WP Rocket) everything is all right: https://i.imgur.com/3QI9yWl.png
The old files were cached and WP Rocket did not automatically purge when the plugin updated, now it should be fine.Ernest Marcinko
KeymasterYou cannot access this content.
July 31, 2024 at 1:41 pm in reply to: I cant find where the text displayed at search results its coming from #48849Ernest Marcinko
KeymasterYou cannot access this content.
-
AuthorPosts