Hi there,
I would like to price search brands within categories by using links e.g. search.php?w=category:Electronics:Audiovox&minPrice=300&maxPrice=600. So far I could not get the links to produce such results. Is this possible?
Also I would like to print search results in columns and to allow slashes in description field or at least to have an empty space instead of it.
Thanks.
Bob
David,
Thanks for that. I am using the max/min price search mode and it is working well if I just search individual brands but when I add it within category&brand combination somehow it does not produce desired results. I must have missed something somewhere...
Bob
Hi Bob,
Sorry - I realised what you were trying to do when reading your message again! Please check your email - i've just sent you a version of the min/max price mod that will apply the variables to the category / brand / merchant search.
Cheers,
David.
Hi Bob,
Sounds like you need the min/max price mods - i'll contact you by email and then send them over for you.
You can permit slashes in the description field by making a modification in includes/admin.php. Look for the following code on line 163:
$record[$admin_importFeed["field_description"]] = tapestry_normalise($record[$admin_importFeed["field_description"]],",'\'\.%!");
...change this to:
$record[$admin_importFeed["field_description"]] = tapestry_normalise($record[$admin_importFeed["field_description"]],",'\'\.%!\/\\");
(this will permit both forward and back-slashes)
Search results in columns is a bit more work because you basically need to completely reformat html/searchresults.php. With results showing a reasonable amount of description it is not immediately compatible with a tabular layout - but you can of course remove or reduce the description component if you wish to display the results in columns. To display the results in columns I would suggest starting with the atoz code which you can find in html/atoz.php. This will show you the HTML structure that you need to combine with the search results HTML to obtain the layout you're looking for....
Hope this helps,
Cheers,
David.