I tried all of that and it wouldn't work. I usually like to use the behaviors the extensions create intact as much as possible but, I'm thinking since I have the information in the URL variable ProductSearch that I could just delete the Search Wizard entirely on the results page and just rewrite the product recordset's SQL statement where I compare the URL ProductSearch value to the ProductName OR ProductSKU database values. I'm thinking this will do what I need. Unless I'm missing something I'm think that should work. Something like:
SELECT *
FROM products
WHERE ProductName LIKE %ProductSearch% OR ProductSKU LIKE %ProductSearch%
ProductSearch has a variable of $_GET['ProductSearch']
Any reason the wouldn't work? Or potential problems with the way the other Webassist code is written?