Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterHi,
Yes – it is possible through the JS API 🙂
This is what you are looking for:
window.addEventListener("load", () => { document.querySelectorAll(".asp_main_container").forEach((el) => { el.addEventListener("asp_results_show", (event) => { // event.detail carries the arguments const [id, instance, phrase] = event.detail; console.log(id, instance, phrase); }); }); });I hope this helps!
Ernest Marcinko
KeymasterHi,
Yes, of course! Thank you for the details, it helps a lot.
I assume you rather have the checkboxes unchecked by default, then apply filters only if the user enters a phrase.
With that in mind, I have changed the following settings:
– Changed the checkboxes default state to unchecked
– Changed the default logic, as it will likely suit your case better
– Changed the minimum character count to trigger the search, so that filters without a phrase won’t trigger the searchOnce you change the URL of the site, it will ask for the license key again on the next check phase, and it will update it on our remote server too.
I hope this helps!
February 17, 2026 at 7:21 pm in reply to: Clumsy update workflow in CI environments needs to be streamlined #57002Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi!
Yes, it is actually possible.
If you enable this option, then the browser address bar will be populated with the current search state. If you copy that and open it, then it will re-populate the results for that state.
Ernest Marcinko
KeymasterYou cannot access this content.
February 16, 2026 at 10:47 am in reply to: Fatal error in Statistics module – string assigned to Result::$result_id (int) #56996Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
February 13, 2026 at 3:59 pm in reply to: Searching words with special characters/symbols on the search bar #56981Ernest Marcinko
KeymasterHi!
Wordpress sometimes converts the & symbol to an HTML entity when storing, so it becomes “AT&S” in the database. (if you search that it will actually work) The plugin should auto-convert it when entering the search phrase to offset that, but it seems like you may have found a bug there.
Either way, this should be very easily resolvable via a small code snippet:
add_filter('asp_query_args', function ( $args ) { $characters = "&"; $replace_with = '&'; $args['s'] = str_replace(str_split($characters), $replace_with, $args['s']); return $args; }, 10, 1);This should resolve the problem. I will also note this on the bug tracker so it is investigated further.
Ernest Marcinko
KeymasterHi Din,
Sure! There is an exclude argument for get values, so you can exclude it simply like so:
{get_values exclude="2997"}This should do the trick.
February 12, 2026 at 2:03 pm in reply to: Search by SKU setup when full SKU being searched is partial match of another SKU #56973Ernest Marcinko
KeymasterYou cannot access this content.
February 11, 2026 at 3:33 pm in reply to: Taxonomy terms multiselect options join in query by or instead of and #56970Ernest Marcinko
KeymasterHi Yannik!
Yes, this option should apply to the multiselect values as well (even though the name suggest checkboxes only).
Ernest Marcinko
KeymasterYou cannot access this content.
February 10, 2026 at 3:38 pm in reply to: Search by SKU setup when full SKU being searched is partial match of another SKU #56962Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterAfter some consideration I have decided to add a back-end option for this in the next release, I have opened an issue on the tracker here.
This will allow a super easy fix for you, as well as for anyone who prefers it this way. -
AuthorPosts