NooTheme Premium WordPress Theme › Forums › JobMonster › Notes on bookmarked resumes
- This topic has 11 replies, 2 voices, and was last updated 4 years, 10 months ago by tinhbeng.
-
AuthorPosts
-
4 years, 10 months ago #1083002
Hey there,
I really think that it's of high importance to have notes on bookmarked resumes.
Example:
So if you have a lot of resumes in your favorite list, and two months past by, we need to know why we've bookmarked them in the first place.
Do you have something like this in your to-do list?
Cheers,
Daniel C.
4 years, 10 months ago #1083021Hi,
Currently the fields in the dashboard are default, there is no option to edit or add fields.
Best regards,
tb.
4 years, 10 months ago #1083050Oki doki.
Well, if you guys could put this in mind for future theme updates, that would be great.
Cheers,
Daniel C.
4 years, 10 months ago #1083094Hi,
You can use the Child Theme and customize the manage-resume-suggest.php file.
4 years, 10 months ago #1083232Hi tb,
I have a hidden field in resumes called "Notes" (database key: 'resume_note') and through functions it's declared '_noo_resume_field_resume_note'. All good.
Now for 'manage-shortlist.php' I've managed this so far:
Declared this:
$notas = noo_get_post_meta($post->ID, '_noo_resume_field_resume_note', '');
And in the desired column I added this:
<form class="inline-edit-col-right">
<label>
<input type="text" name="_noo_resume_field_resume_note" class="nooresumefieldresumenote" value="<?php if ( $notas ) { echo esc_html( $notas );} else {esc_html_e( 'N/A', 'noo' );} ?>"></label>
</form>
Now I have data appearing in the input. What I'm not being able to accomplish is being able to save data.
Can you help me with this action?
Cheers,
Daniel C
4 years, 10 months ago #1083256Hi,
The fields added from "Custom Fields" are automatically stored when the user submits, you don't need to do anything to save it.
You just need to retrieve it according to the corresponding post id and use it.
Best regards,
tb.
4 years, 10 months ago #1083299Hi,
well, I added a submit button and when pressed, all resumes disappear from the list, I refresh page and they appear again, but no changes in the notes 🙁
4 years, 10 months ago #1083333Hi,
Please send me a screenshot to clarify.
4 years, 10 months ago #1083368I've created the input (1) and it's gathering data from the database. But if I change or add text and press submit button (2) all goes blank:
If I hit refresh, the list comes back but no changes in the notes.
4 years, 10 months ago #1083378There seems to be a misunderstanding here.
I approach the issue :
The user who will enter the resume note field -> But here you are the person who will enter the resume note not the user.
=> So you will need to save the data (submit) before you can retrieve it for use. When you click on "OK" you need to update the data you've entered into the corresponding post.
How did you do it?
4 years, 10 months ago #1083383In the file: manage-shortlist.php
Declared this on top:
And for that column added this:
4 years, 10 months ago #1083416Hi,
When you click on "OK" you need to get the value that you enter and update it into the corresponding post before you can retrieve it for use.
eg:
if(isset[$_GET['resume_not']){
$resume_note = $_GET['resume_note'];
update_post_meta($post_id,'resume_note',$resume_note);
}
-
AuthorPosts
You must be logged in and have valid license to reply to this topic.