Hi, is it possible to use a custom field as a search filter? For example, I create a custom field called book author. When users click on a link to Elmore Leonard, it'll return all the results for his books.
Hi,
I know you're using the plugin so this would need to go in pto_search.php, look for the following code around line 105:
case "brand": $fields = array("merchant","category","brand");
...and REPLACE with:
case "brand": case "author": $fields = array("merchant","category","brand","author");
Cheers, David. -- PriceTapestry.com
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
I know you're using the plugin so this would need to go in pto_search.php, look for the following code around line 105:
case "brand":
$fields = array("merchant","category","brand");
...and REPLACE with:
case "brand":
case "author":
$fields = array("merchant","category","brand","author");
Cheers,
David.
--
PriceTapestry.com