Topic: HIREME in 1.6 Tabs, doubled Footer in Application und Recaptcha
Hi
Yesterday I converted my 1.4 site http://phuketict.com/jobs. to 1.6.
I am using the Hireme Template as a base which I modified with Yui.
Unfortunately the Tabs are working on the old site http://jodbar.com/jobs
but no more on the new site http://phuketict.com/jobs
Could someone point me what has changed - at the moment I changed the line
{foreach item=job from=$latest_jobs_parttime}
and so on always to
{foreach item=job from=$latest_jobs}
so that at least always all jobs show up. But how can I get it again switching between parttime, fulltime and freelance?
===============================================
SECOND Question:
===============================================
The Apply Icon shows doubled after inserting the code from 1.4 to 1.6
http://phuketict.com/jobs/job/12/flash-
any/#apply
===============================================
THIRD Question
===============================================
In the post a new job form I always get a second footer showing up - any Idea why and how I can get rid of it?
http://phuketict.com/jobs/post/
===============================================
FOURTH Question
===============================================
I want integrate Recaptcha on all forms - how do I do this - does anybody have a step by step tutorial
http://phuketict.com/jobs/post/
http://phuketict.com/jobs/contact/
http://phuketict.com/jobs/job/12/flash-
any/#apply
On all those Pages Recaptcha I want to add recaptcha.
===============================================
FIFTH Question
===============================================
When I use the Hireme Template the admin area has lost its complete CSS even I haven't added anything to the admin folder. How can I get it back - the one from original 1.6 which looks pretty nice.
=========
Thanks and sorry for so much questions. Your jobberbase is really great and I like it but I struggled about those few points only.
Andi
------------
<div id="job-listings"></div>
{if $latest_jobs}
<div class="domtab">
<ul id="nav" class="domtabs clearfix">
<li><a href="#latest-jobs" title="{$current_category} full time" id="alljobs">All</a></li>
<li><a href="#latest-jobs-fulltime" title="{$current_category} full time" id="fulltime">Full-time</a></li>
<li><a href="#latest-jobs-parttime" title="{$current_category} part time" id="parttime">Part-time</a></li>
<li><a href="#latest-jobs-freelance" title="{$current_category} freelance" id="freelance">Freelance</a></li>
</ul>
<div><a name="latest-jobs" id="latest-jobs"></a>
<!--<h2>{$translations.homepage.recent_jobs}</h2>
<p class="pullup">Most recent Job postings</p>-->
<div class="latest-jobs">
<ul class="joblisting">
{foreach item=job from=$latest_jobs}
{include file="loops.tpl"}
{/foreach}
</ul>
</div>
</div>
<div style="display:none;">
<a name="latest-jobs-fulltime" id="latest-jobs-fulltime"></a>
<!--<h2>{$translations.homepage.recent_jobs_fulltime}</h2>
<p class="pullup">Most recent Job postings</p>-->
<div class="latest-jobs">
<ul class="joblisting">
{foreach item=job from=$latest_jobs}
{include file="loops.tpl"}
{/foreach}
</ul>
</div>
</div>
<div style="display:none;">
<a name="latest-jobs-parttime" id="latest-jobs-parttime"></a>
<!--<h2>{$translations.homepage.recent_jobs_parttime}</h2>
<p class="pullup">Most recent Job postings</p>-->
<div class="latest-jobs">
<ul class="joblisting">
{foreach item=job from=$latest_jobs}
{include file="loops.tpl"}
{/foreach}
</ul>
</div>
</div>
<div style="display:none;">
<a name="latest-jobs-freelance" id="latest-jobs-freelance"></a>
<!--<h2>{$translations.homepage.recent_jobs_freelance}</h2>
<p class="pullup">Most recent Job postings</p>-->
<div class="latest-jobs">
<ul class="joblisting">
{foreach item=job from=$latest_jobs}
{include file="loops.tpl"}
{/foreach}
</ul>
</div>
</div>
</div>
{/if}
{if !$latest_jobs && !$most_applied_to_jobs}
<br />
<p>
{$translations.homepage.no_jobs}.<br />
<a href="{$BASE_URL}post/" title="{$translations.footer.new_job_title}">{$translations.footer.new_job}</a>?
</p>
{/if}
-----------------------------------------------