I was unable to reproduce this issue. Could you post your entire template?
Hi Gary,
Thanks for looking into this, here the code
[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">[job_field7_label]</th>
<td>[job_field7] </td>
</tr>
<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]
<!-- Job Description -->
[if_job_field5]
<tr>
<th scope="row">[job_field5_label]</th>
<td>[job_field5]</td>
</tr>
[/job_field5]
<!-- Job Type -->
[if_job_field10]
<tr>
<th scope="row">[job_field10_label]</th>
<td>[job_field10]</td>
</tr>
[/job_field10]
<!-- Job Type Description -->
[if_job_field11]
<tr>
<th scope="row">[job_field11_label]</th>
<td>[job_field11]</td>
</tr>
[/job_field11]
<!-- Salary -->
[if_job_field1]
<tr>
<th scope="row">[job_field1_label]</th>
<td>[job_field1]</td>
</tr>
[/job_field1]
<!-- Start Date -->
[if_job_field2]
<tr>
<th scope="row">[job_field2_label]</th>
<td>[job_field2]</td>
</tr>
[/job_field2]
<!-- End Date -->
[if_job_field3]
<tr>
<th scope="row">[job_field3_label]</th>
<td>[job_field3]</td>
</tr>
[/job_field3]
<!-- Location -->
[if_job_field4]
<tr>
<th scope="row">[job_field4_label]</th>
<td>[job_field4]</td>
</tr>
[/job_field4]
<!-- Address -->
[if_job_field6]
<tr>
<th scope="row">[job_field6_label]</th>
<td>[job_field6]</td>
</tr>
[/job_field6]
<!-- Contact Person -->
[if_job_field12]
<tr>
<th scope="row">[job_field12_label]</th>
<td>[job_field12]</td>
</tr>
[/job_field12]
<!-- No. of Position Open -->
[if_job_field13]
<tr>
<th scope="row">[job_field13_label]</th>
<td>[job_field13]</td>
</tr>
[/job_field13]
<!-- Additional Info -->
[if_job_field9]
<tr>
<th scope="row">[job_field9_label]</th>
<td>[job_field9]</td>
</tr>
[/job_field9]
<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]
Ah, I completely missed it. You need to close the if tag with another if tag. ie, you’re currently doing this:
[if_job_field2]
<tr>
<th scope="row">[job_field2_label]</th>
<td>[job_field2]</td>
</tr>
[/job_field2]
You need to do this:
[if_job_field2]
<tr>
<th scope="row">[job_field2_label]</th>
<td>[job_field2]</td>
</tr>
[/if_job_field2]