I would like to remove the product descriptions from my search results, how would I go about this?
Thank you
Hi,
This would just be a case of removing the relevant code from html/searchresults.php - the description is displayed by the following code at line 20:
<p><?php print substr($product["description"],0,250); ?></p>
...so if you delete that line, the description will be remove from search results...
Cheers, David.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
This would just be a case of removing the relevant code from html/searchresults.php - the description is displayed by the following code at line 20:
<p><?php print substr($product["description"],0,250); ?></p>
...so if you delete that line, the description will be remove from search results...
Cheers,
David.