Forum Replies Created
-
AuthorPosts
-
Hi,
You can update these lines to noo_form_handler.php
$update_post_date = date_i18n( 'Y-m-d H:i', current_time( 'timestamp' ), );
'post_date' => $update_post_date
Best regards,
tb.
Hi,
You can try with this function:
function noo_quickedit_save_post( $post_id, $post ) {
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
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_resume', 'noo_quickedit_save_post', 10, 2 );
Best regards,
tb.
Hi,
We don't have settings for this problem.
I think sending mail depends on your mail server.
Best regards,
tb.
5 years, 4 months ago in reply to: Column Video Background – blackout while buffering to replay #1080237Hi,
I have no way to remove it
You can try RevSlider plugin to see if this improves.
Best regards,
tb.
Hi,
We login with FTP account above, but the folder is empty.
I can't do anything with an empty folder.
Please check again.
Best regards,
tb.
Hi,
- Remove Sidebar: You can't remove the sidebar in class single page.
You can use the Child Theme and custom the single-noo-class.php file (/themes/noo-yogi/noo-timetable/)
- Custom page heading: You can copy this function to the functions.php of Child Theme and change the text that you want.
function get_page_heading() {
$heading = '';
$archive_title = '';
$archive_desc = '';
if( ! noo_get_option( 'noo_page_heading', true ) ) {
return array($heading, $archive_title, $archive_desc);
}
if ( is_home() ) {
$heading = noo_get_option( 'noo_blog_heading_title', __( 'Blog', 'noo' ) );
} elseif ( NOO_WOOCOMMERCE_EXIST && is_shop() ) {
if( is_search() ) {
$heading =__( 'Search Results:', 'noo' ) . ' ' . esc_attr( get_search_query() );
} else {
$heading = noo_get_option( 'noo_shop_heading_title', __( 'Shop', 'noo' ) );
}
} elseif ( is_search() ) {
$heading = __( 'Search Results', 'noo' );
global $wp_query;
if(!empty($wp_query->found_posts)) {
if($wp_query->found_posts > 1) {
$heading = $wp_query->found_posts ." ". __('Search Results for:','noo')." ".esc_attr( get_search_query() );
} else {
$heading = $wp_query->found_posts ." ". __('Search Result for:','noo')." ".esc_attr( get_search_query() );
}
} else {
if(!empty($_GET['s'])) {
$heading = __('Search Results for:','noo')." ".esc_attr( get_search_query() );
} else {
$heading = __('To search the site please enter a valid term','noo');
}
}
} elseif ( is_author() ) {
$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
$heading = __('Author Archive','noo');
if(isset($curauth->nickname)) $heading .= ' ' . __('for:','noo')." ".$curauth->nickname;
} elseif ( is_year() ) {
$heading = __( 'Post Archive by Year: ', 'noo' ) . get_the_date( 'Y' );
} elseif ( is_month() ) {
$heading = __( 'Post Archive by Month: ', 'noo' ) . get_the_date( 'F,Y' );
} elseif ( is_day() ) {
$heading = __( 'Post Archive by Day: ', 'noo' ) . get_the_date( 'F j, Y' );
} elseif ( is_404() ) {
$heading = __( 'Oops! We could not find anything to show to you.', 'noo' );
$archive_title = __( 'Would you like going else where to find your stuff.', 'noo' );
} elseif ( is_category() ) {
$heading = single_cat_title( '', false );
// $archive_desc = term_description();
}elseif (is_tag()){
$heading = single_tag_title( '', false );
}
elseif(is_tax())
{
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$heading = $term->name;
} elseif ( is_singular( 'product' ) ) {
$heading = noo_get_option( 'noo_woocommerce_product_disable_heading', true ) ? '' : get_the_title();
} elseif ( is_single() ) {
if(is_singular('post'))
$heading = __('Blog Detail','noo');
elseif(is_singular('noo_event'))
$heading = __('Event Detail','noo');
elseif(is_singular('noo_class'))
$heading = __('Class Detail','noo');
elseif(is_singular('noo_trainer'))
$heading = __('Trainer Profile','noo');
else
$heading = get_the_title();
} elseif( is_page() ) {
//if( ! noo_get_post_meta(get_the_ID(), '_noo_wp_page_hide_page_title', false) ) {
$heading = get_the_title();
//}
} elseif( is_post_type_archive('noo_event') ) {
$heading = noo_get_option( 'noo_events_heading_title', __( 'Events List', 'noo' ) );
} elseif( is_post_type_archive('noo_class') ) {
$heading = noo_get_option( 'noo_class_heading_title', __( 'Class List', 'noo' ) );
} elseif( is_post_type_archive('noo_trainer') ) {
$heading = noo_get_option( 'noo_trainer_heading_title', __( 'Trainer List', 'noo' ) );
}
return array($heading, $archive_title, $archive_desc);
}
Best regards,
tb.
The issue has been solved!.
Please reload your site and check again.
Best regards,
tb.
5 years, 4 months ago in reply to: CAn you fix problem with recaptcha, google map and some translation? #1080202Hi,
2. Remove arrow: You go to Home page -> Edit page -> remove the Extra class name "banner-icon":
3. Hidden RSS icon: You add these lines to custom CSS:
.noo-display-type .noo-type-btn:last-child {
display: none;
}
4. I'm not sure about this issue. Why does this text exist in the url?
Please send me an admin account.
5. Hide Candidate:
.single-noo_job .count.applications {
display: none;
}
- Add job alert in single job:
Currently, Jobmster doesn't support this option.
Best regards,
tb
Ok, I will wait the feedback from you.
Best regards,
tb.
Hi,
You can remove the assets folder in the Childtheme
You only need to add custom CSS in the style.css file of Child Theme.
Later, you add this function to the functions.php of Child theme
function jobmonster_child_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'jobmonster_child_styles', 99 );
Best reagrds,
tb.
Hi,
I added some lines code.
Please reload your site and check again.
Best regards,
tb.
Hi,
I have included it in the attached file.
The column "Closing Date" replace to "Publish Date".
Best regards,
tb.
Hi,
The issue has been solved!.
Please reload your site and check again.
Best regards,
tb.
Hi,
The issue has been solved.
I added a line code in the noo_form_handler.php (/themes/noo-jobmonster/framework/admin/)
We will update this issue in the next version.
Best regards,
tb
Hi,
You go to Jobica -> Settings -> Resumes tab -> Scrolldown -> uncheck "Enable Skill"
5 years, 4 months ago in reply to: Google Maps not Loading On Desktop & Mobile (Tablet Fine) #1080157Hi,
Try disabling JS compression on your site
Hi,
This is possible.
First, create a field for google suggest location.
You can then search based on the address field of Job.
Best regards,
tb.
This reply has been marked as private.5 years, 4 months ago in reply to: CAn you fix problem with recaptcha, google map and some translation? #1080154Sorry for the delayed reply.
We will have 1 release this October.
Best regards,
tb.
This reply has been marked as private.Hi,
Please send me admin account (Set as private reply).
I will help you check.
Best regards,
tb.
Hi,
I updated the issue: https://nootheme.com/forums/topic/resume-creator/#post-1079808
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.
Please send me a screenshot to clarify.
Best regards,
tb
Hi,
I understand but we are currently planning to update other products besides Jobmonster. We will return when completing these updates.
Best regards,
tb.
Hi,
3. You can try with the steps:
- You go to Jobmonster -> Custom Field -> Resume tab and add a new custom field (eg: resume_note).
- You use CSS to hide this field on the frontend
- Adding custom columns to custom post types: You put these functions into the functions.php file
// Add the custom columns to the book post type:
add_filter( 'manage_noo_resume_posts_columns', 'add_resume_note_columns' );
function add_resume_note_columns($columns) {
unset( $columns['note'] );
$columns['note'] = __( 'Note', 'noo' );
return $columns;
}
// Add the data to the custom columns for the noo_resume post type:
add_action( 'manage_noo_resume_posts_custom_column' , 'custom_resume_note_column', 10, 2 );
function custom_resume_note_column( $column, $post_id ) {
switch ( $column ) {
case 'note' :
$note= noo_get_post_meta($post_id, '_noo_resume_field_resume_note');
echo $note;
break;
}
}
Hope it helps!.
Best regards,
tb.
-
AuthorPosts