Hi Pento
I have tried everything but I cannot figure out how to make this work... It's probably a simple thing, but it's driving me nuts!!! I really need your input :) I want a "commtechservices.com" type of list
I took the "page.php" from my theme, and renamed it to generate another template. Then I tried to insert the code you gave up here in this post. I just get the table structure, and that's it... It seems that the code between [] is not getting read as code. I moved it around, tried replacing the characters (sometimes it can be the char set), put it on and off a php identifier, changed the labels, etc... NOTHING.
My blog is in Spanish language, so that might be what's causing the problem... I just don't get it :(
This is the code for my template:
<?php /* Mystique/digitalnature
Template Name: Job List
*/
/* Mystique/digitalnature */
get_header();
?>
<!-- main content: primary + sidebar(s) -->
<div id="main">
<div id="main-inside" class="clear-block">
<!-- primary content -->
<div id="primary-content">
<div class="blocks">
<?php do_action('mystique_before_primary'); ?>
<table class="jobs-table">
<tr class="heading">
<th>Puesto</th>
<th>Remuneración</th>
<th>Ubicación</th>
</tr>
[job_loop]
<tr class="job[job_row_number] job[job_id] [if_job_highlighted]highlighted [/if_job_highlighted][job_odd_even]">
<td>[if_job_icon][job_icon]<br />[/if_job_icon] [job_link] [job_title] [/job_link]</td>
<td>[job_field1]</td>
<td>[job_field4]</td>
</tr>
[/job_loop]
</table>
<?php
if (have_posts()):
while (have_posts()):
the_post();
mystique_page();
endwhile;
endif;
comments_template();
?>
<?php do_action('mystique_after_primary'); ?>
</div>
</div>
<!-- /primary content -->
<?php get_sidebar(); ?>
</div>
</div>
<!-- /main content -->
<?php get_footer(); ?>
I left the original part of the page (post) to get all the jobs fully deployed, but it will be removed when I get the list working. The page can be viewed in:
http://www.mythosom.com/jobs/
Thanks for your great plugin, and for your help. Cheers!!
Diego