Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Adam Heckler

    (@adamkheckler)

    Hi there!

    Hmm, I’m not quite understanding what you’re trying to accomplish here. Can you explain a bit about how you want the job search functionality to work?

    Thanks!

    I used a custom search form on the home page.

    function search_form_func( $atts ){
    $form = ‘<form method=”GET” action=”/jobs/” class=”searchform”>
    <div class=”row”>
    <div class=”col-sm-1″></div>
    <div class=”col-sm-4″>
    <input type=”text” id=”search_keywords” name=”search_keywords” placeholder=”Title or keyword” />
    </div>
    <div class=”col-sm-4″>
    <input type=”text” id=”search_location” name=”search_location” placeholder=”Location” />
    </div>
    <div class=”col-sm-2″>
    <input type=”submit” value=”Search” />
    </div>
    <div class=”col-sm-1″></div>
    </div>
    </form>’;

    return $form;
    }
    add_shortcode( ‘search_form’, ‘search_form_func’ );

    and then on the ‘jobs’ page, setup the shortcode [jobs]

    Plugin Contributor Adam Heckler

    (@adamkheckler)

    Ok. Are you having a problem with that functionality, or… ? I’m not sure if you’re saying there’s a problem or something else.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help!!! using job filter in other page’ is closed to new replies.