Page Restrictions
-
Hopefully I can explain this clearly.
Im trying to allow two different search types based on subscription.
Currently I have two different search pages.
My page has a search box that if you are a free subscriber you get limited results. If you are a paid member you get full results. (Two separate pages that I would like to combine into one)
If a user is Level 1 or below, they get results from 1 php page. If they are Level 2 or higher they get results from a different php page.
This is the code that I have for the free page results:
Search for camps here. You can use a school name, city, conference or division to find a camp.
<center><form action="search2free.php" method="GET">
<input type="text" name="query" />
<input type="submit" value="Find a Camp!" />
</form></center>
This is the code for the paid results:
Search for camps here. You can use a school name, city, conference or division to find a camp.
<center><form action="search2a.php" method="GET">
<input type="text" name="query" />
<input type="submit" value="Find a Camp!" />
</form></center>
Can this be done with shortcodes? If so, how?
- The topic ‘Page Restrictions’ is closed to new replies.