Thanks for the compliments. And of course, I'd love to share how I:
To add Post a Resume button (and not have it also appear when Job Lister logs in)
I'm using the Eva child theme so in the child theme Includes folder I added sidebar-sjob.php file
I added this just above </div>:
<?php if (!is_user_logged_in() || (is_user_logged_in() && current_user_can('can_submit_resume'))) : ?>
<a href="<?php echo get_permalink(get_option('jr_submit_page_id')); ?>" class="button"><span><?php _e('Post a Resume','appthemes'); ?></span></a>
<?php endif; ?>
BUT The Post a Resume button was then taking people to the register page that is specific to Post a Job(has post job arrows and no radio buttons to select if you're a Seeker or Poster as it assumes you are a Poster). So to get that button to go to the general Register page.
in sidebar-sjob.php (in my child theme)
I changed this:
<a href="<?php echo get_permalink(get_option('jr_submit_page_id')); ?>" class="button"><span><?php _e('Post a Resume','appthemes'); ?></span></a>
To this:
*********** <a href="http://mysitename.com/login/" class="button"><span><?php _e('Post a Resume','appthemes'); ?></span></a>
Hope that helps.
Tim