Topic: Change the default "Location" on the "Post A New Job" form
Jobberbase 1.9
Here are the steps to change the default Locations field from 'Anywhere' to your choice:
1) open "publish-write.tpl" in your favorite editor (_templates/your_theme/publish-write.tpl)
2) find line 60 (approximately)
change:
<option value="0">{$translations.jobs.location_anywhere}</option>
to (example):
<option value="35" selected="selected">Rye, NY</option>
Replace with your info:
a) value="35" (id "number" in "cities" table)
b) Rye, NY ("name" field)
(find in MySQL database)
Thanks to putypuruty for the help with this.