Jump to content

Redirect to one search result


Recommended Posts

I'd like my Prestashop to work so that if there is only a single search result for a query, instead of displaying the search results page, it would go directly to that product page.

 

How can I do that? (without paid modules, please)

 

Thanks in advance!

Link to comment
Share on other sites

I actually solved it myself.

 

Line 111 in SearchController.php, I added

    if($nbProducts == 1) {
	    header("Location: ".$search['result'][0]['link']);
    }

 

This is probably a bad idea when thinking about updating the software in the future, and I'm not entirely even sure if this is the best place to put this in. Any better solutions will be gladly accepted! :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...