Forum Replies Created
-
AuthorPosts
-
September 14, 2023 at 6:16 pm in reply to: Open the PDF file after searching it with the customised Post name #45385
Ernest Marcinko
KeymasterOh okay, great 🙂
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterIt looks all right to me for the first sight.
Can you check if there is anything within the
$groupssvariable?Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
September 13, 2023 at 12:46 pm in reply to: The plugin stopped working after server migration and update #45366Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
September 12, 2023 at 5:38 pm in reply to: AjaxSearch pro and FilterEverything selected chips #45362Ernest Marcinko
KeymasterHi,
I’m afraid they might be mutually exclusive. Both plugins use a similar algorithm to hook into the content and force the results, but they work on top of each other. Whichever you trigger first is going to override the other one. I don’t think there is any way to force them to “work together” as they each have individual points of execution for the overrides.
September 12, 2023 at 5:35 pm in reply to: The plugin stopped working after server migration and update #45361Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterThe code seems to be incorrect. There is this knowledge base article on how to exactly use the
asp_results_groupshook.The main issue with your code is that you are tring to add items via query_posts to the live results list, however those are not compatible there. Instead of that, you should try ASP_Query. Something like:
$args = array( 's' => '', '_ajax_search' => true, 'post_tax_filter' => array( array( 'taxonomy' => 'product_cat', 'include' => array(123), // Taxonomy term ID here 'allow_empty' => false // Allow results, that does not have connection with this taxonomy ) ) ); $asp_query = new ASP_Query($args); $groupss = $asp_query->posts;September 12, 2023 at 12:45 pm in reply to: Open the PDF file after searching it with the customised Post name #45358Ernest Marcinko
KeymasterSure! It should be opening on a new window now.
Ernest Marcinko
KeymasterYou are very welcome!
I will close this topic soon.
-
AuthorPosts