Okay so this sounds a bit weird in my head so hopefully I can explain this well 
I'll use an example, let's say I'm using cloned pages to keep a database of products. I want a search box that runs some custom code ONLY IF the search term matches a specific field EXACTLY, if not then the search should fail.
Is this something I can do? It should resemble something like this:
Thanks!

I'll use an example, let's say I'm using cloned pages to keep a database of products. I want a search box that runs some custom code ONLY IF the search term matches a specific field EXACTLY, if not then the search should fail.
Is this something I can do? It should resemble something like this:
- Code: Select all
search for term "AmazingProductName".
if "AmazingProductName" exists as k_page_title
Do this code
if not EXACT match
Do this code
Thanks!