This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Other results at top but should be at bottom.

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Other results at top but should be at bottom. Reply To: Other results at top but should be at bottom.

#34986
Ernest MarcinkoErnest Marcinko
Keymaster

Well, not via settings, but could be doable via a custom code.

add_filter('asp_result_groups', 'add_asp_result_groups', 10, 1);
function add_asp_result_groups($groups) {
	if ( isset($groups['_other_res']) ) {
		$or = $groups['_other_res'];
		unset($groups['_other_res']);
		return array_merge($groups, array('_other_res' => $or));
	}
	return $groups;
}

Try adding this code to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.