Forum Replies Created
-
AuthorPosts
-
After I updated all files in child theme, checking wich add new or renewed functions. This part is ok now.
Sorry to bother.
Cheers.
Thanks, once again,
Cheers
Thanks mate. You rock!
Ok. First I'm going to ask if it's possible to turn expiration date off?
If it's not possible, how can I hide it from here:
I must be really really tired to be missing this kind of little tiny steps :/ Well, thanks one more time.
Cheers
Well, it worked. Don't know what I did yesterday. Thanks mate
This reply has been marked as private.Hi team,
the reject/approve button issue it's solved, but now the same problem goes to the delete button in the application actions.
With the admin account that I've sent you, I can create jobs and works normally. If it's not admin it doesn't work.
This reply has been marked as private.<Please ignore about the private resumes issue. Was not an issue.>
Hi there,
well, but to the existing companies and jobs, approving function it's not working.
I reject application
Next I confirm
Delivering this message "No application rejected"
And the application does not get rejected, stays the same:
###############################################
This is that bar in filling resume (COLLAPSE1)
###############################################
Another thing appeared in jobs descriptions. When a candidate opens a job, beneath the "apply" button there's this:
I've noticed also that since theme update, when someone is filling a resume, in the bottom an openable bar appeared with the text "collapse1".
I've forgot to say that I already updated theme aswell.
This reply has been marked as private.Hi tinhbeng,
thanks once more for a solution.
One question off-topic, now that I have to update theme, what's the best way to save all the changes I've made so far in the theme? I have child configured and active. Should I just keep those files aside, update the theme and then restore those files? Or there's an easier way?
Cheers
Hi, 1. You can add these lines to Custom CSS: .noo-topbar .noo-topbar-user .sub-menu li:first-child,.nav-item-member-profile .sub-menu > li:first-child { display: none; } 2. This field cannot be duplicated, because Job and company have different input fields 3. This problem need to custom source code. We are currently unable to help you customize this issue. Best regards, tb.
Hi,
as you advised me, I added those css lines to hide publish job button, but only now I've noticed that it hides the first button (Manage Resumes) from the applicants as well. Anyway to block companies from publishing jobs? I want Admin to be the only one able to publish jobs.Another problem solved! Great support.
Cheers,
Daniel C.
That, completely did the trick!
tinhbeng, you're like a god to me. Respect.
Cheers
Daniel C.
Hi, great, that did the work. Tanks.
So I explored that code and wanted to put a field in quick edit to be easy to edit that field. I searched and found a few things and I achieved the following code. But it's not saving. Can you help me find where did I made a mistake?
<code>function noo_quickedit_custom_posts_columns( $posts_columns ) { $posts_columns['_noo_resume_field_resume_note'] = __( 'Notas', 'noo' ); return $posts_columns; } add_filter( 'manage_noo_resume_posts_columns', 'noo_quickedit_custom_posts_columns' ); function noo_quickedit_custom_column_display( $column_name, $post_id ) { if ( '_noo_resume_field_resume_note' == $column_name ) { $time_recorded = get_post_meta( $post_id, '_noo_resume_field_resume_note', true ); if ( $time_recorded ) { echo esc_html( $time_recorded ); } else { esc_html_e( 'N/A', 'noo' ); } } } add_action( 'manage_noo_resume_posts_custom_column', 'noo_quickedit_custom_column_display', 10, 2 ); function noo_quickedit_fields( $column_name, $post_type ) { if ( '_noo_resume_field_resume_note' != $column_name ) return; // $time_recorded = get_post_meta( $post_id, '_noo_resume_field_resume_note', true ); ?> <fieldset class="inline-edit-col-right"> <div class="inline-edit-col"> <label> <span class="title"><?php esc_html_e( 'Notas', 'noo' ); ?></span> <span class="input-text-wrap"> <input type="text" name="_noo_resume_field_resume_note" class="generatewpedittime" value=""> </span> </label> </div> </fieldset> <?php } add_action( 'quick_edit_custom_box', 'noo_quickedit_fields', 10, 2 ); function noo_quickedit_save_post( $post_id, $post ) { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; if ( $post->post_type != 'post' ) return; if ( ! current_user_can( 'edit_post', $post_id ) ) return; if ( isset( $_POST['_noo_resume_field_resume_note'] ) ) { update_post_meta( $post_id, '_noo_resume_field_resume_note', $_POST['_noo_resume_field_resume_note'] ); } } add_action( 'save_post', 'noo_quickedit_save_post', 10, 2 ); </code>
Hi tinhbeng,
sorry man, for giving you all this trouble, but info is still missing.
Attachments:
You must be logged in to view attached files.ATTACHMENTS (Forgot them in last post)
Attachments:
You must be logged in to view attached files.Hi,
when you press the print button, the new window that opens does not have all the info introduced in the resume.
I attached two image. The first one it's showing all resume details. When you press the print button, a lot of information of the resume it's missing from printing view. And the print button still appears in the opened window and does not work.
Cheers,
Daniel C.
Hey,
When a person is creating a resume, the print symbol is also present and it's clickable. It shouldn't appear in that section since it opens a new window misformated with no relevant information.
Cheers,
Daniel C.
This reply has been marked as private. -
AuthorPosts