Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Can I have an older plugin version?
- This topic has 5 replies, 2 voices, and was last updated 3 years, 7 months ago by
Ernest Marcinko.
-
AuthorPosts
-
October 26, 2022 at 5:03 pm #39785
martinclement
ParticipantHello
Could you please send me the plugin version 4.22.5?
I have an issue that I can’t fix and would like to try to find if it’s due to the plugin version.
Love the plugin by the way! 🙂
Thank you and best regards,
MartinOctober 27, 2022 at 11:56 am #39788Ernest Marcinko
KeymasterHi Martin,
I’m afraid we can’t do that. Rolling back the plugin version will cause even more issues, as the data structures change from time to time.
May I ask what the issue is? It might be something we know about and I might be able to suggest a very easy solution.
October 27, 2022 at 12:44 pm #39791martinclement
ParticipantAh too bad.
Here is the issue:
I have a search form on my website and underneath it an Easy Post Element from Oxygen Builder (not Elementor). And although it is not an Elementor element, your feature to refresh the search results in that element (adding the class asp_es_1) worked in previous versions.Sadly, it’s not the case anymore after I made the update.
Doesn’t work here on the client’s website: https://kjfs-lyss.ch/wordpress/
But works here: https://kjfs.m-clement.ch/October 27, 2022 at 2:10 pm #39800Ernest Marcinko
KeymasterOkay, thank you!
This is a very weird one, I had to check the source code, and there is littel to no difference in the current and the previous releases in regards the override feature. I can’t see how this could have worked in the first place, as the search override should have not triggered whatsoever – unless there is some hook in the Oxygen Builder connecting with Elementor, which I don’t know about.
Anyways, there is actually a way to force the search override on any query, regardless of the page builder via a small custom code snippet:
add_filter('asp_query_is_search', 'asp_query_is_search_test', 10, 2); function asp_query_is_search_test($is_search, $wp_query) { if ( isset($_GET['asp_ls'] ) { return true; } return false; }If this does not work, then there is more to this – as this will definitely trigger an override on any query registered.
October 28, 2022 at 5:14 pm #39816martinclement
ParticipantOk this is almost working, I added your code into the Snipptes and it detects the listing but is not able to update the list. Sometimes it breaks the whole browser, be careful if you want to check https://kjfs-lyss.ch/wordpress/
Anyway, I have absolutely no idea what to do but to tell the client it is not working anymore, deal with it and with a litle hope it will work again sometime in the future 🙂
Thank you anyway for your help! Very nice and helpful support (eventhough my issue wasn’t fixed 😀 )
October 29, 2022 at 6:33 pm #39818Ernest Marcinko
KeymasterThank you for your kind words!
Interesting, I honestly don’t know how this worked in the first place.
The good news is, that the next upcoming release will support filtering of post type archive pages. That means, if you are using this on a blog archive, or any other post archive page, it may be possible. The configuration is a bit different, but there is hope.
-
AuthorPosts
- You must be logged in to reply to this topic.