NooTheme Premium WordPress Theme › Forums › JobMonster › Company Logo on Jobs Page
- This topic has 211 replies, 7 voices, and was last updated 4 years, 8 months ago by tinhbeng.
-
AuthorPosts
-
4 years, 11 months ago #1082311
Hi,
You can add these lines to style.css of Child Theme:
.company-list .company-item .company-item-meta a:hover{
color: #81d742;
}
4 years, 11 months ago #1082638This reply has been marked as private.4 years, 11 months ago #1082652Hi,
You can add these lines to style.css of Child Theme:
.noo-btn-job-alert-form:hover {
border-color: #e8be2f;
}
4 years, 11 months ago #1082671This reply has been marked as private.4 years, 10 months ago #1082711Hi,
If you do not want to add custom fields to the package, please disable this option (uncheck)
Best regards,
tb.
4 years, 10 months ago #1082736This reply has been marked as private.4 years, 10 months ago #1082751Hi,
You can copy the content from the attachment to functions.php file of Child Theme, later change the text.
Attachments:
You must be logged in to view attached files.4 years, 10 months ago #1082783This reply has been marked as private.4 years, 10 months ago #1082790Hi,
You can add these lines to style.css of Child Theme:
.noo-pricing-table .pricing-info ul li {
text-transform: capitalize;
}
Best regards,
tb.
4 years, 10 months ago #1082798This reply has been marked as private.4 years, 10 months ago #1082801Hi,
You can update the text via Loco Translate Plugin or use Child Theme and customize wp-content/themes/noo-jobmonster/layouts/job/job_package.php
Best regards,
tb.
4 years, 10 months ago #1082878This reply has been marked as private.4 years, 10 months ago #1082923Hi,
- Download Resume Limit, Expired On: /themes/noo-jobmonster/layouts/dashboard/manage-plan.php
- View Candidate\'s Contact , View Candidate\'s Contact Limit:
\themes\noo-jobmonster\framework\resume\resume-viewable-contact.php
- Resume View Limit , View Resume Until:
\themes\noo-jobmonster\framework\resume\resume-viewable-job-package.php
4 years, 10 months ago #1082947This reply has been marked as private.4 years, 10 months ago #1082983Hi,
I am sure the string is in the above file.
Please try again.
4 years, 10 months ago #1083098This reply has been marked as private.4 years, 10 months ago #1083121Hi,
You can add it to the functions.php file of Child Theme:
function jm_manage_plan_features_view_resume( $package ) {
if( Noo_Member::is_employer() && jm_is_enabled_job_package_view_resume() ) :
$resume_view_limit = isset( $package['resume_view_limit'] ) && !empty( $package['resume_view_limit'] ) ? intval( $package['resume_view_limit']) : 0;
$resume_view_remain = jm_get_resume_view_remain();
$resume_view_until = jm_get_resume_view_expire();
if( $resume_view_until == -1 ) {
$resume_view_until = __('Forever', 'noo');
} elseif( is_numeric( $resume_view_until ) ) {
$resume_view_until = $resume_view_until > time() ? date_i18n( get_option('date_format') . ' ' . get_option('time_format'), $resume_view_until ) : '' . __('Expired', 'noo') . '';
}
if( isset( $package['can_view_resume'] ) && $package['can_view_resume'] == '1' ) : ?>
<?php if( $resume_view_limit ) : ?>
<?php _e('Resume Views Limit','noo')?><?php if( $resume_view_limit == -1) : ?>
<?php _e('Unlimited','noo');?><?php elseif( $resume_view_limit > 0 ) : ?>
<?php echo sprintf( _n( '%d resume', '%d resumes', $resume_view_limit, 'noo' ), $resume_view_limit ); ?><?php if( $resume_view_remain < $resume_view_limit ) echo ' ' . sprintf( __('( %d remains )', 'noo'), $resume_view_remain ); ?>
<?php endif; ?>
<?php endif; ?>
<?php if( $resume_view_until ) : ?>
<?php _e('View Resumes Until','noo')?><?php echo $resume_view_until; ?><?php endif; ?>
<?php endif;
endif;
}
add_action( 'jm_manage_plan_features_list', 'jm_manage_plan_features_view_resume' );
4 years, 10 months ago #1083198This reply has been marked as private.4 years, 10 months ago #1083251Hi,
You can use Child Theme and customize /noo-jobmonster/layouts/heading.php file
You find to these codes and remove them:
4 years, 10 months ago #1083300This reply has been marked as private.4 years, 10 months ago #1083332Hi,
I used Child Theme and customize the manage-application.php file.
Please reload your site and check again.
4 years, 10 months ago #1083355This reply has been marked as private.4 years, 10 months ago #1083375Sorry, currently you cannot remove these lines.
4 years, 10 months ago #1083394This reply has been marked as private.4 years, 10 months ago #1083397This reply has been marked as private. -
AuthorPosts
You must be logged in and have valid license to reply to this topic.