sumitt2004 Posted February 26, 2013 Share Posted February 26, 2013 Hi, I want to display Layered Navigation Block at Manufacturers and Search Result page, I transplanted that Module and removed both pages from exclusion list. Still I it's not showing at both pages. Could anybody guide me how to do this? Thanks Link to comment Share on other sites More sharing options...
NemoPS Posted February 26, 2013 Share Posted February 26, 2013 Hi, it's not possible at the moment. As far as i know that module only works on category pages. You need a custom solution for what you ask Link to comment Share on other sites More sharing options...
sumitt2004 Posted February 26, 2013 Author Share Posted February 26, 2013 Hi Nemo1, thanks for your reply. http://www.toygully.com/ has same thing I am looking for. Could you please help me to customize the module? Link to comment Share on other sites More sharing options...
valx Posted May 17, 2013 Share Posted May 17, 2013 did you find a solution for this? that's what i'm looking for since a couple of weeks Link to comment Share on other sites More sharing options...
gsv1982 Posted October 8, 2013 Share Posted October 8, 2013 Somebody found a solution? Link to comment Share on other sites More sharing options...
tomerg3 Posted October 8, 2013 Share Posted October 8, 2013 You will need to look at alternative modules, until Prestashop addresses this issue. You can check out our Ajax filter http://www.prestashop.com/forums/topic/118467-module-ajax-filter-ajax-based-filter-using-price-supplier-man-category-feature-attribute/ (which can also be on the homepage and the center column) You can also try to Addons store. Link to comment Share on other sites More sharing options...
eec Posted December 1, 2014 Share Posted December 1, 2014 Is there a way to have layered navigation on Search Results page in prestashop 1.6? Link to comment Share on other sites More sharing options...
pskeeda Posted February 14, 2015 Share Posted February 14, 2015 looking for layered navigation on search page, any help please! Link to comment Share on other sites More sharing options...
tgiordmaina Posted June 30, 2015 Share Posted June 30, 2015 I want update this topic because now the addon to handle filtering on manufacturer product pages is available on official prestashop addons store and works perfectly : https://addons.prest...d_product=19882 I don't know if the same addon exists to handle filtering on search page. Best Regards Link to comment Share on other sites More sharing options...
Madsex Posted April 19, 2016 Share Posted April 19, 2016 I have found this module, actualy his work only with brands but developer saied that won't to implement it with other layer. Hope can help you: http://addons.prestashop.com/it/22381-filtro-in-pagina-ricerca.html bye Link to comment Share on other sites More sharing options...
eec Posted April 19, 2016 Share Posted April 19, 2016 Is there a way to have layered navigation on Search Results page in prestashop 1.6? Hello All Update on my previous post; I searched for a method to enable the layered navigation search results page. But unfortunately I could not get it done. Than we decided to do modify the search results page, and add some filters to it. We have utilized the DataTable which is implemented by Allen using JQuery and is a neat and clean tool. (Opensource) Luckily the search method in PS like most of other components are very well documented so it was not very difficult to get search results out of the existing PHP search method, and then we only needed to get the list of matching products (or search results) feed that list to the DataTables and the rest is being handled by Datatables. We liked it so much that we went on and utilized the same method for all other pages of the website as well. It was one of our struggles, and today when I got a notification on this loop I realized I have shared the results of our efforts here. Hope that gives some idea to you. good luck 1 Link to comment Share on other sites More sharing options...
jasvarghese Posted July 13, 2016 Share Posted July 13, 2016 Hello All Update on my previous post; I searched for a method to enable the layered navigation search results page. But unfortunately I could not get it done. Than we decided to do modify the search results page, and add some filters to it. We have utilized the DataTable which is implemented by Allen using JQuery and is a neat and clean tool. (Opensource) Luckily the search method in PS like most of other components are very well documented so it was not very difficult to get search results out of the existing PHP search method, and then we only needed to get the list of matching products (or search results) feed that list to the DataTables and the rest is being handled by Datatables. We liked it so much that we went on and utilized the same method for all other pages of the website as well. It was one of our struggles, and today when I got a notification on this loop I realized I have shared the results of our efforts here. Hope that gives some idea to you. good luck Hi, Can you give some clue how this can be done exactly? I needed to add filter to Search results and Manufacturers pages Thank you Link to comment Share on other sites More sharing options...
eec Posted July 13, 2016 Share Posted July 13, 2016 For this to happen first you need to override the page which lists search results and in that page you need to implement the DATATABLES It helps greatly to understand / know that for each search the SEARCH.PHP is called and it basically sends a SQL query to MySQL database and stores the results of products' search in an array of sort. So once you have re-configured your search results page, then you will implement the DataTables JQuery tool there, with products / items returned by Search.PHP, DataTables will provide the filtering and search within results features. Search.php is somewhat commented and documented both in the php file itself and in these forums, also the DataTables has got its own website and forum with many active users which is a great resource. In our case I have overriden both the search.php and search results page's smarty (tpl) file to get the desired outcome. I assumed you are familiar with these concepts of over riding functions/classes in Prestashop and also with SQL queries and SMARTY etc. Otherwise it will take some effort to manage this. But the result is totally worth the effort, visitors will like the feature. hope this helps 1 Link to comment Share on other sites More sharing options...
jasvarghese Posted July 14, 2016 Share Posted July 14, 2016 For this to happen first you need to override the page which lists search results and in that page you need to implement the DATATABLES It helps greatly to understand / know that for each search the SEARCH.PHP is called and it basically sends a SQL query to MySQL database and stores the results of products' search in an array of sort. So once you have re-configured your search results page, then you will implement the DataTables JQuery tool there, with products / items returned by Search.PHP, DataTables will provide the filtering and search within results features. Search.php is somewhat commented and documented both in the php file itself and in these forums, also the DataTables has got its own website and forum with many active users which is a great resource. In our case I have overriden both the search.php and search results page's smarty (tpl) file to get the desired outcome. I assumed you are familiar with these concepts of over riding functions/classes in Prestashop and also with SQL queries and SMARTY etc. Otherwise it will take some effort to manage this. But the result is totally worth the effort, visitors will like the feature. hope this helps Thats great, makes sense. I will try it myself by following what you suggested Thank you Link to comment Share on other sites More sharing options...
godlo Posted November 3, 2016 Share Posted November 3, 2016 For this to happen first you need to override the page which lists search results and in that page you need to implement the DATATABLES It helps greatly to understand / know that for each search the SEARCH.PHP is called and it basically sends a SQL query to MySQL database and stores the results of products' search in an array of sort. So once you have re-configured your search results page, then you will implement the DataTables JQuery tool there, with products / items returned by Search.PHP, DataTables will provide the filtering and search within results features. Search.php is somewhat commented and documented both in the php file itself and in these forums, also the DataTables has got its own website and forum with many active users which is a great resource. In our case I have overriden both the search.php and search results page's smarty (tpl) file to get the desired outcome. I assumed you are familiar with these concepts of over riding functions/classes in Prestashop and also with SQL queries and SMARTY etc. Otherwise it will take some effort to manage this. But the result is totally worth the effort, visitors will like the feature. hope this helps Thats great, makes sense. I will try it myself by following what you suggested Thank you is it possibile to share this code with community? 1 Link to comment Share on other sites More sharing options...
Recommended Posts