pduobert / wordpress-job-manager

Automatically exported from code.google.com/p/wordpress-job-manager
0 stars 1 forks source link

Job Listing Page #610

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Is there a way to have the jobs list on the jobs page versus displaying the 
entire job description one right after the other? I'd like it to list the job 
and then allow the user to click on the job for additional information. 
2.The "Powered By" is still visible on the page even though it is unchecked
3.How do I reduce the size of the font on the jobs page? 

What is the expected output? What do you see instead?

What version of Job Manager are you using?

What version of WordPress are you using?

Please provide any additional information below.

Original issue reported on code.google.com by lhwer...@gmail.com on 6 Jun 2014 at 2:14

GoogleCodeExporter commented 8 years ago
Hi there,

This can be easily achieved in 

Job Manager - settings - Display Settings.

Scroll down to the 'Job Templates' section
In the 'Job List Template' html box copy all the current data in there and 
paste it into a notepad text document and save it on your computer as the 
original then delete the contents and paste in the following. If you have any 
problems post them back and I'll take a look for you. You might need to play 
with the "width=" settings in this code below to fit your template. If all 
fails then just delete the html and paste back in your original :) :-

<table>
    <tr>
        <th [job_icon] width="20"></th>
        <th [Title] width="427">Job Title</th>
        <th [job_field4_label] width="100">Location</th>
        <th [job_field1_label] width="100">Salary</th>
    </tr>
[job_loop]
    <tr>
        <td>[job_icon]</td>
        <td>[job_link][job_title][/job_link]</td>
        <td>[job_field4]</td>
        <td>[job_field1]</td>
    </tr>
[/job_loop]
</table>

[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]

Original comment by dannydel...@gmail.com on 6 Jun 2014 at 1:09