Re: Features For Next Release
You've done some great work on modifying ClassiPress. Looks good!
So I tried to post but it says I need to register.
Basically you can swap out the location text field with a drop down box. In your post-form.php page, search for the following line of code:
Code:
<input type="text" id="location" name="location" value="<?php echo $location; ?>" />
Replace that with a drop down list like this (but use your own values instead).
Code:
<select name='location' id='location' class='postform' >
<option value=''>Select One</option>
<option>San Francisco, CA</option>
<option>Los Angeles, CA</option>
<option>Boston, MA</option>
</select>
As long as you keep the "name" equal to "location", it will save the information the same. Give that a shot and let me know how it works out for you.