groenroos Posted May 14, 2012 Share Posted May 14, 2012 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 More sharing options...
groenroos Posted May 14, 2012 Author Share Posted May 14, 2012 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now