• I have the plugin installed and would like the jobs index to show a list of positions including title, category, location, and start date then followed by a more information link, instead of showing the entire job. There are fine examples of this linked from the plugin homepage. The only reference to summaries I have found is to include an icon. Where are there detailed instructions or can someone walk me through this?

    Also from the linked examples from the plugin homepage: the actual job pages have “gutters” with the very information listed above and then the job description, qualifications and benefits are listed in the body. This is precisely what I was looking to do and I assumed it was standard. Again, is there documentation to help set this up or can someone help me do so?

    BlueTree is the best example of what I am speaking about.

    Presently, I am trying to figure out the shortcode and have the following:

    [job_loop]
    <div class="job[job_row_number] job[job_id] [job_odd_even]">
    <table class="job-table[if_job_highlighted] highlighted[/if_job_highlighted]">
      <tr>
        <th scope="row">Title</th>
        <td>[job_icon] [job_link][job_title][/job_link]</td>
      </tr>
    [if_job_categories]
      <tr>
         <th scope="row">Categories</th>
         <td>[job_category_links]</td>
      </tr>
    [/if_job_categories]
      <tr>
        <th scope="row">Location</th>
        <td>[job_field4_label]</td>
      </tr>
    [job_field_loop]
      [if_job_field]
      <tr>
        <td>[job_title]</td>
        <td>[job_field4]</td>
        <td>[job_field2]</td>
      </tr>
      [/if_job_field]
    [/job_field_loop]
      <tr>
        <td></td>
        <td class="jobs-applynow">[job_apply_link]Apply Now[/job_apply_link]</td>
      </tr>
    </table>
    </div><br/><br/>
    [/job_loop]
    
    [if_job_page_count]
    <div class="job-nav">
    	<div class="previous">[job_page_previous_link]Page [job_page_previous_number][/job_page_previous_link]</div>
    	<div class="this">Jobs [job_page_minimum]-[job_page_maximum] of [job_total]</div>
    	<div class="next">[job_page_next_link]Page [job_page_next_number][/job_page_next_link]</div>
    </div>
    [/if_job_page_count]

    I am receiving multiple lines of repeated data.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Here’s a link to a post by Gary Pendergast where he describes how to customize the job list:

    https://pento.net/tag/job-manager/

    Thread Starter Detlev

    (@detlev)

    Thank you lauraupcott. I was trying to follow those instructions and that is how I got the above code. I have figured a bit more on my own but I think it is all limited by “tables” The example (BlueTree) is not using tables and that is what I was aiming to do.

    I’d be interested to know how Bluetree did that too. I’m using tables for the site I’m building so it’s a lot easier. Just a combination of setting up the PHP loop in the Job Manager Display Settings and then setting up the CSS.

    Wish I could help ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Layout Options’ is closed to new replies.