Forum Replies Created
-
AuthorPosts
-
Hi,
I did not find the problem as above. Can you check it again?
Best regards,
tb.
Hi,
Child Theme has been set up correctly.
To ensure the options in Customizer are not lost. Before you activate a topic, you should open Customizer in a separate window tab. After active your theme, you go back to the previous Customizer tab, make a small change and click the "Publish" button.
- the "Register" button: I added these lines to style.css of Child theme:
.nav-item-member-profile.register-link a.member-register-link:hover{
background-color: #59E159;
}
Please reload your site and check again.
Best regards,
tb.
This reply has been marked as private.Hi,
I updated the code for property custom field.
- With agent profile, you go to wpml and select the domain "realty-portal" => translate for it.
Best regards,
tb.
Hi,
They answered but not really clear.
You can follow this topic in here:
https://wordpress.org/support/plugin/front-end-pm/
Best regards,
tb.
This reply has been marked as private.Ok, Joseph.
Hi,
You go to Customizer -> Job & Company -> Single Job -> http://prntscr.com/q0i2ym
The default number of views is always displayed if greater than 0.
Best regards,
tb.
Hi,
You can use plugin Loco translate and translate it.
Best regards,
tb.
Hi,
I added the above lines to style.css of Child Theme.
Please reload your site and check again.
Best regards,
tb.
Hi,
You can use Loco Translate plugin and translate for theme.
Best regards,
tb.
Hi,
What purpose are you using secondary colors?
If you simply override the color a few places, you can use CSS:
eg: change text color
body{
color: #398cc2;
}
Hi,
There is currently no separate class to use CSS hide this button.
We will update in the next version.
Best regards,
tb.
Hi,
Please send me link your site and a screenshot to clarify.
Best regards,
tb.
Hi,
I can't connect with the above info.
Please check again.
Best regards,
tb.
This reply has been marked as private.Hi,
Currently jobmonster does not have this option, you can use custom CSS and override color.
Thanks.
Hi,
I found this error in the manag page, use the data table:
Do you have any custom in data table?
If you customized them, please follow this topic and check again.
Best regards,
tb.
Hi,
1, With application form popup: The following fields are the default: candidate_name, candidate_email,application_attachment, resume
2,3 If you want to customize the position, you can use child theme and customize the file form.php (wp-content/themes/noo-jobmonster/layouts/job/apply/)
4, By default, Jobmonster inherits the maximum file upload filesize from WordPress.
If you want to specify a maximum filesize, the following code will set the limit to 1mb for non-admins.
function noo_limit_upload_size_limit_for_non_admin( $limit ) {
if ( ! current_user_can( 'manage_options' ) ) {
$limit = 1000000; // 1mb in bytes
}
return $limit;
}
add_filter( 'upload_size_limit', 'noo_limit_upload_size_limit_for_non_admin' );
function noo_apply_wp_handle_upload_prefilter( $file ) {
if ( ! current_user_can( 'manage_options' ) ) {
$limit = 1000000; // 1mb in bytes
if ( $file['size'] > $limit ) {
$file['error'] = __( 'Maximum filesize is 1mb', 'noo' );
}
}
return $file;
}
add_filter( 'wp_handle_upload_prefilter', 'noo_apply_wp_handle_upload_prefilter' );
5, You go to Jobmonster ->Settings -> Resume tab
6,
we have added customized fields here: jobmonster => customized fields and saw the fields online. but for some reason they just disappear again after a couple of minutes and I can not see them in the backend anymore.
You can check again.
Hi,
We currently do not have this option.
Best regards,
tb.
Hi,
I added this option: http://prntscr.com/q0e0ew , the position changed.
There is currently no option to shorten the package content while keeping the current content as it is
Best regards,
tb.
Hi,
You can use the image with size: 1900 x 360px.
5 years, 7 months ago in reply to: I need to change the register button's background color! #1081595Hi,
You can use two plugin:
https://wordpress.org/plugins/wp-all-import/
https://wordpress.org/plugins/wp-all-export/
You can try following these steps:
eg: Import Job to Jobmonster Site.
- You create a job with the Jobmonster site.
- You export it => You will have a sample file to import
- You export all job from current your site.
- Edit the file similar to the sample file you exported from the Jobmonster site.
- Import the file to Jobmonster site.
I think you will need someone who understands WordPress to be able to do this job.
Best regards,
tb.
Hi,
You can go to WP Backery Page Builder -> Role Manager -> click Save Change again.
-
AuthorPosts