Search:

Search: Search took 1.00 seconds.

  1. Replies
    8
    Views
    635

    Its those damned urls of your again :) ...

    Its those damned urls of your again :)

    tpl-myjobs.php around line 150 find:


    <td class="actions"><?php if (get_option('jr_allow_editing')=='yes') : ?><a href="<?php echo...
  2. Replies
    28
    Views
    2,583

    The fix is to change (in index.php):

    The fix is to change (in index.php):


    <?php bloginfo('rss2_url'); ?>?post_type=job_listing

    to:


    <?php echo add_query_arg('post_type', 'job_listing', get_bloginfo('rss2_url')); ?>
  3. Replies
    45
    Views
    2,358

    Modify the whole lot to be safe. The actual...

    Modify the whole lot to be safe. The actual change to be more specific was:


    AND jobs_count < jobs_limit

    to:


    AND (jobs_count < jobs_limit OR jobs_limit = 0)
  4. Replies
    45
    Views
    2,358

    Hi Guys, 2 lines of code to fix this issue: ...

    Hi Guys, 2 lines of code to fix this issue:

    Theme-functions.php around line 728, the jr_get_user_job_packs function needs:


    if (get_current_user_id()>0) return $wpdb->get_results("SELECT *...
  5. Replies
    21
    Views
    2,030

    This is my version of the full working code,...

    This is my version of the full working code, remember, location should be a city or a postcode.

    theme-indeed.php
  6. Change tpl-submit.php line 19 to: if...

    Change tpl-submit.php line 19 to:


    if (!is_user_logged_in()) :
    $step = 1;
    else :
    $step = 2;
    if (!current_user_can('can_submit_job')) :
    redirect_myjobs();
    endif;
  7. Try this snippet in your functions file: ...

    Try this snippet in your functions file:


    function jr_rss_pre_get_posts($query) {
    if ($query->is_feed) $query->set('post_status','publish');
    return $query;
    }
    add_filter('pre_get_posts',...
  8. Replies
    12
    Views
    1,106

    Try this instead :) Functions again: ...

    Try this instead :) Functions again:


    wp_clear_scheduled_hook('get_indeed_jobs');
    wp_schedule_event(time(), 'daily', 'get_indeed_jobs');

    Then remove. That should sort it until 1.4
  9. [SOLVED] I believe you just need to leave it empty :)

    I believe you just need to leave it empty :)
  10. Replies
    9
    Views
    726

    [SOLVED] Looks like you have heavily modified the job...

    Looks like you have heavily modified the job types; what ever code change you made in loop-job.php needs to be done in single-job_listing.php replacing the
    <span class="type"><?php...
  11. Its likely on that site that they are adding the...

    Its likely on that site that they are adding the full descriptions manually; as we stated, indeed do not seem to provide a full description via the search API.
  12. Replies
    8
    Views
    601

    To solve this I've changed...

    To solve this I've changed includes/forms/submit-job/submit-job-form.php line 26 from:


    <p class="optional"><label for="website"><?php _e('Website', 'appthemes'); ?></label> <input type="text"...
  13. To include both posts and job listings in the...

    To include both posts and job listings in the main RSS feed, add this to your functions.php file (this will be included in JR 1.4):


    // Add custom post types to the Main RSS feed
    function...
  14. Replies
    3
    Views
    542

    You should have to go through and change all "30"...

    You should have to go through and change all "30" to "90" - files to edit are as follows.

    orders.class.php - line 230
    confirm-job-process.php - line 40
    relist-job-process.php - line 169
  15. Replies
    14
    Views
    1,013

    [SOLVED] Found the issue, the forms post 'name' instead of...

    Found the issue, the forms post 'name' instead of 'slug'. Line 38 includes/forms/submit-job/submit-job-form.php add slugs and a value:


    <option <?php if (isset($posted['job_term_type']) &&...
  16. Replies
    26
    Views
    1,998

    No, thats the bit your inserting. If you look at...

    No, thats the bit your inserting. If you look at the file you'll see where that chunk is.
  17. [SOLVED] Thanks for identifying this issue. To patch it,...

    Thanks for identifying this issue. To patch it, includes/admin/write-panel.php line 158, change the "else" to


    elseif (isset($_POST[ $meta_box[ 'name' ] . '_year' ])) :

    That should prevent...
  18. [SOLVED] search.php before line 20 add: ...

    search.php before line 20 add:


    $search_result_ids[] = 0;
  19. [SOLVED] Line 64 of forms/submit-job/submit-job-form.php,...

    Line 64 of forms/submit-job/submit-job-form.php, before it add:


    <?php if (get_option('jr_enable_salary_field')!=='no') : ?>

    and on 81, after the select box, put:


    <?php endif; ?>
  20. Replies
    15
    Views
    1,105

    I think I've found the issue. ...

    I think I've found the issue.

    includes/classes/packs.class.php - lines 101 and 102:

    $this->job_count = $result->job_count;
    $this->job_limit = $result->job_limit;

    Change to:
    ...
Results 1 to 20 of 20