Is there any way to shorten the product name length as with the desciption.
Great script worth every penny, used first version now rebuilding using recent version.
Chris
To do this, you need to make 2 changes in html/seachresults.php
For each instance of:
<?php print $product["name"]; ?>
Change it to:
<?php print substr($product["name"],0,30); ?>
That would display the first 30 characters of the product name; simply change the number 30 in the code as required. Hope this helps!
Hi Chris,
I'll get the code required for this posted first thing tomorrow...