Title: Smart Ordering?
Last modified: March 19, 2024

---

# Smart Ordering?

 *  Resolved [virteom](https://wordpress.org/support/users/virteom/)
 * (@virteom)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/smart-ordering/)
 * How does smart ordering work? Where do I set the priority of the order? My site
   appears to be returning results from “content” before “title” but I don’t know
   where I set this to do title as first priority.

Viewing 1 replies (of 1 total)

 *  Plugin Author [ILLID](https://wordpress.org/support/users/mihail-barinov/)
 * (@mihail-barinov)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/smart-ordering/#post-17515565)
 * Hi,
 * Plugin counts not only where the search words were found ( title, content, etc.),
   but also some other parameters like length of the words, number of repeats of
   each word inside product fields and so one. More about this you can read [here](https://advanced-woo-search.com/guide/relevance-score/).
 * If you want to add more relevance score for words inside the title you can use
   the following code snippet:
 *     ```wp-block-code
       add_filter( 'aws_relevance_scores', 'my_aws_relevance_scores' );
       function my_aws_relevance_scores( $relevance_array ) {
           $relevance_array['title'] = 700;
           return $relevance_array;
       }
       ```
   
 * You need to add it somewhere outside the plugins folder. For example, inside 
   functions.php file of your theme or use some plugin for adding code snippets.
 * Also, after adding this code you will need to go to the plugin settings page 
   and click the ‘Clear cache’ button.
 * Regards

Viewing 1 replies (of 1 total)

The topic ‘Smart Ordering?’ is closed to new replies.

 * ![](https://ps.w.org/advanced-woo-search/assets/icon-256x256.png?rev=3303984)
 * [Advanced Woo Search - Product Search for WooCommerce](https://wordpress.org/plugins/advanced-woo-search/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/advanced-woo-search/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/advanced-woo-search/)
 * [Active Topics](https://wordpress.org/support/plugin/advanced-woo-search/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/advanced-woo-search/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/advanced-woo-search/reviews/)

 * 3 replies
 * 4 participants
 * Last reply from: [ILLID](https://wordpress.org/support/users/mihail-barinov/)
 * Last activity: [2 years, 2 months ago](https://wordpress.org/support/topic/smart-ordering/#post-17515565)
 * Status: resolved