Search and View Resumes
search_resume.JPG
Under what file would I find the "Search and View Resumes" in the sidebar.
Here is the source code:
<div id="sidebar">
<ul class="widgets">
<li class="widget widget-submit">
<div>
<a href="http://www.xxxxxr.com/submit/" class="button"><span>Submit a Job</span></a>
</div>
</li>
<li id="resume_categories-4" class="widget widget_resume_categories"><div></div><h2 class="widget_title">Search & View Resumes</h2><div class="widget_content"><ul> <li class="cat-item cat-item-398"><a href="http://www.xxxxxx.com/resume/category/accounting-audit/" title="View all posts filed under Accounting / Audit">Accounting / Audit</a>
</li>
<li class="cat-item cat-item-399"><a href="http://www.xxxxxxr.com/resume/category/manager-supervisor/" title="View all posts filed under Manager / Supervisor">Manager / Supervisor</a>
</li>
</ul></div></li>
</ul>
</div><!-- end sidebar -->
I have searched every sidebar file this is the closest I can find:
<?php if (get_option('jr_submit_page_id')) : ?>
<li class="widget widget-submit">
<?php if (!is_user_logged_in() || (is_user_logged_in() && current_user_can('can_submit_job'))) : ?>
<div>
<a href="<?php echo get_permalink(get_option('jr_submit_page_id')); ?>" class="button"><span><?php _e('Submit a Job','appthemes'); ?></span></a>
<?php if ($text = get_option('jr_jobs_submit_text')) : echo wpautop(wptexturize($text)); else :
$packs = jr_get_job_packs();
if (sizeof($packs) == 0) :
// display standard pricing
$amount = get_option('jr_jobs_listing_cost');
if ($amount && $amount>0) : echo '<p class="pricing"><em>'.jr_get_currency($amount).'</em> '.__('for','appthemes').' <em>30 '.__('days','appthemes').'</em></p>'; endif;
endif;
endif; ?>
</div>
<?php endif; ?>
<?php if (is_user_logged_in() && current_user_can('can_submit_resume')) : ?>
<?php if (get_option('jr_allow_job_seekers')=='yes') : ?>
<div>
<a href="<?php echo get_permalink(get_option('jr_dashboard_page_id')); ?>" class="button"><span><?php _e('My Dashboard','appthemes'); ?></span></a>
<?php //if ($text = get_option('jr_my_profile_button_text')) echo wpautop(wptexturize($text)); ?>
</div>
<?php endif; ?>
<?php endif; ?>
</li>
<?php endif; ?>
Any ideas..I need it to be put on other sites but as I see now the other sites have the exact file codes!..UGH