Salary Dropdown Field under Search Button
-
I have installed the plugin and added in functions.php the code from here https://wpjobmanager.com/document/tutorial-adding-a-salary-field-for-jobs/ and yet this one become of the front end.
I also don’t know how to rearrange this and the values under the salary list in the dropdown is not working specifically these parts:
function filter_by_salary_field() { ?> <div class="search_categories"> <label for="search_categories"><?php _e( 'Salary', 'wp-job-manager' ); ?></label> <select name="filter_by_salary" class="job-manager-filter"> <option value=""><?php _e( 'Any Salary', 'wp-job-manager' ); ?></option> <option value="upto20"><?php _e( 'Up to $20,000', 'wp-job-manager' ); ?></option> <option value="20000-40000"><?php _e( '$20,000 to $40,000', 'wp-job-manager' ); ?></option> <option value="40000-60000"><?php _e( '$40,000 to $60,000', 'wp-job-manager' ); ?></option> <option value="over60"><?php _e( '$60,000+', 'wp-job-manager' ); ?></option> </select> </div> <?php }
Can you help me with this?
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Salary Dropdown Field under Search Button’ is closed to new replies.