Showing search-forms on resume_search and advance_resume_search result page
By default, resume_search and advance_resume_search pages search-results doesn't show the search-forms.
If you wanted to alter this behavior, and show the search forms form both resume_search and advance_resume_search respectively, please follow the steps below:
- Connect to your server-files via FTP.
- Open /engine/pages/resume_search.php and navigate to action_resume_search() function. At the bottom of this function, you'll find this code:
/engine/pages/resume_search.php
_page::default_action();
...you'll have to change it to:
Change the above-code to:_form_page::default_action();
- Open /engine/pages/advance_resume_search.php and navigate to action_advanced_resume_search() function. At the bottom of this function, you'll find this code:
/engine/pages/advance_resume_search.php
_page::default_action();
...you'll have to change it to:
Change the above-code to:_form_page::default_action();
Hope that helps.