Skip to main content

Use specified ids for wordpress search and ignore original search query

I'm working on a wordpress ecommerce website in which the user can search for keywords, and products are returned to the user. However, wordpress's default search is super slow, so I'm using a custom endpoint to return ids of products. Using these ids, I need to simply tell Wordpress to forget its current query and just display those post ids. This feels like something that should be extremely simple, but I've been pulling my hair out for hours to try and get this working.

I've tried several things, for example modifying the search query and setting 'post__in' to the array of post ids, but this doesn't work because this still requires wordpress to run it's full query before checking if the query values contain those ids. I need the wordpress query to completely be overwritten. So, I've tried adding a new WP_Query inside of a 'pre_get_posts' with 'post__in' in the query args and returning that query instead of the original, but that also doesn't work.

I've also tried unsetting the 's' variable for both query and query_vars as well as setting is_search to false, but that definitely didn't work. I even tried using 'query_posts' hook to try and modify the sql directly, but this proved to have the same problem as another attempt above. The query still had to run first, and that's part of the problem.

There was a similar question asked here, but no answer was ever given. https://wordpress.org/support/topic/override-pre_get_posts-to-give-specific-ids-to-fetch/ This sounds almost identical to what I'm attempting to do, so it's unfortunate that the post got closed.

Perhaps 'pre_get_posts' in the functions.php file isn't the right way to go, but I'm at a loss as to what to do next.

The site this is for is also using woocommerce. Also, I'm pretty new to Wordpress, so this may very well be something simple that I'm missing.

I just found this https://core.trac.wordpress.org/ticket/36687#no0 that may lead me in the right direction. I'm still testing it, but hopefully it's what I needed.



source https://stackoverflow.com/questions/68550191/use-specified-ids-for-wordpress-search-and-ignore-original-search-query

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...