Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author kandrews

    (@kandrews)

    Right now there sort is by publish date, then last name.
    So to have only last name, find this line in the file submissions in the includes folder:

    $infoQuery = $wpdb->get_results( 'SELECT * FROM ' . SUBTABLE . $queryFind . ' ORDER BY pubdate DESC, lname DESC, fname DESC LIMIT ' . $offSet . ', ' .$rowsPerPage );

    Replace with:

    $infoQuery = $wpdb->get_results( 'SELECT * FROM ' . SUBTABLE . $queryFind . ' ORDER BY lname DESC, fname DESC LIMIT ' . $offSet . ', ' .$rowsPerPage );

    Thread Starter jeffbon

    (@jeffbon)

    This works on the backend list but not on the resume-submissions web page.

    Thread Starter jeffbon

    (@jeffbon)

    I figured it out by editing display-resumes.php.

    Is there any way to display other fields in display-resumes.php?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to sort resumes on Resume Submission’ is closed to new replies.