How about a modification to the category layout so that it just shows images and title?
Instead of http://www.webpricecheck.co.uk/category/DVD-Burner/, it would just show the image and title.
Actually, I'd like to keep the title, image, and compare prices/more information link. Then, if possible, adjust the layout using a "atoz.php" type of file. I've tried this on my own and really botched it up, lol.
Hi Mike,
I think the thing to do here is to create a custom version of html/searchresults.php and then modify search.php to use your custom version whenever the search is for a "category:".
For example, if you create the file: html/catsearchresults.php, (start by making a copy of html/searchresults.php) modify this to display category results as you would like, and then at the bottom of search.php look for the following code:
require("html/searchresults.php");
(line 166 in the distribution)
Change this as follows:
if ($parts[0] == "category")
{
require("html/catsearchresults.php");
}
else
{
require("html/searchresults.php");
}
Hope this helps!
Cheers,
David.
Hi Mike,
That page that you go through to is actually re-written to search.php, so the output is standard for all normal searches, as well as merchant, category and brand searches. Just to make sure i've understood you correctly, are you wanting to remove the description, price and Compare Prices / More Information links from this page?