skinnybloke Posted September 30, 2013 Share Posted September 30, 2013 Hi - using PS v1.5.5 I want to be able to display a product's description on the search results page. I would appreciate it if someone could advise on what I need to change. Link to comment Share on other sites More sharing options...
vekia Posted September 30, 2013 Share Posted September 30, 2013 you're talking about search results or about quick search block (i mean feature: while you type in the search field you see products) Link to comment Share on other sites More sharing options...
skinnybloke Posted September 30, 2013 Author Share Posted September 30, 2013 It's the blocksearch module. You type in your search string and click a button and it displays a page of results. Link to comment Share on other sites More sharing options...
vekia Posted September 30, 2013 Share Posted September 30, 2013 search results template file is located in your theme directory : themes/YOUR_THEME/product-list.tpl this is the same file which displays results in categories. just add somewhere {$product.description} or {$product.description_short} (depending on your needs) and you will see description Link to comment Share on other sites More sharing options...
skinnybloke Posted September 30, 2013 Author Share Posted September 30, 2013 I'm afraid that does not work. I already have that code in there - which displays correctly on the product page. I was thinking it may have something to do with \classes\Search.php which does not seem to reference the description in the SQL SELECT statement. Link to comment Share on other sites More sharing options...
skinnybloke Posted October 1, 2013 Author Share Posted October 1, 2013 This can be closed. The short description is passed to product-list.tpl and I've decided to use that Link to comment Share on other sites More sharing options...
vekia Posted October 1, 2013 Share Posted October 1, 2013 thank you for information that you solved it and of course how you solved it im going to mark this thread as solved exactly as you suggested thank you Link to comment Share on other sites More sharing options...
Razu Posted November 21, 2013 Share Posted November 21, 2013 how can we be able to display the product's short discription on quick search along with search value ?? any idea ?? Link to comment Share on other sites More sharing options...
Razu Posted November 22, 2013 Share Posted November 22, 2013 (edited) how can we be able to display the product's short discription on quick search along with search value ?? any idea ?? Edited November 22, 2013 by Razu (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted November 22, 2013 Share Posted November 22, 2013 it's enough to post the same message one time Link to comment Share on other sites More sharing options...
Razu Posted November 23, 2013 Share Posted November 23, 2013 hehe..!! my mistake..and isn't there solution for my question?? :) or i need to purchase a module for this one ?? Link to comment Share on other sites More sharing options...
dorje Posted November 24, 2013 Share Posted November 24, 2013 Prestashop lacks in many features. We have to buy modules for simple things. It Really sucks sometimes. 2 Link to comment Share on other sites More sharing options...
vekia Posted November 24, 2013 Share Posted November 24, 2013 no, there is no module for that. because ... i think that solution for your question is a simple theme modification. nothing more. but before i start my little investigation, we are talking here about AJAX SEARCH results or just about search results page? Link to comment Share on other sites More sharing options...
And63 Posted November 24, 2013 Share Posted November 24, 2013 Look in this post: http://www.prestashop.com/forums/topic/239150-add-an-image-on-instant-search/?do=findComment&comment=1258282 I added product price to search results, similarly you can add a short description 2 Link to comment Share on other sites More sharing options...
Razu Posted November 27, 2013 Share Posted November 27, 2013 it's about ajax Search Link to comment Share on other sites More sharing options...
vekia Posted November 27, 2013 Share Posted November 27, 2013 ajax search = quick search so please describe a bit more what you exactly expect. (especially WHERE you want to display description) Link to comment Share on other sites More sharing options...
Sharak Posted May 12, 2014 Share Posted May 12, 2014 As this is the first result for google search on "prestashop full description on search results" I give solution for that Search result page uses /themes/your_theme/product-list.tpl so you need to edit this file and find this section: <p class="product_desc"><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}" >{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}</a></p> Simply change both description_short to description Now edit /classes/Search.php and in function find (starting around line 180) search for query that starts with this (around line 310): $sql = 'SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description_short`, pl.`available_now`, pl.`available_later`, pl.`link_rewrite`, pl.`name`, (...) and next to pl.`description_short`, add pl.`description`, . Now it should look like this: $sql = 'SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description_short`, pl.`description`, pl.`available_now`, pl.`available_later`, pl.`link_rewrite`, pl.`name`, (...) Similar changes should be made in function searchTag (starting around line 625) if you have Blocktags module enabled on your shop. 2 Link to comment Share on other sites More sharing options...
Tatort Posted November 18, 2016 Share Posted November 18, 2016 Hello anyone now for adding the description on instant search result? 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