Forum Replies Created
-
AuthorPosts
-
Hi,
I tried with site on localhost and it works normally.
I'm not sure about this problem.
You can reduce your PHP version to 7.3.9 instead of 7.4. I found a few bugs on the Organici theme on version of PHP 7.4. It may have caused the above problem.
Best regards,
tb.
Hi,
You can't move the position, you can only show/hide it.
Best regards,
tb.
Hi,
It looks like you've added the above code, but Bing Map is still active. I'm not sure about this, but you can try updating the theme to the latest version and try again ( you should backup your site before updating ).
Best regards,
tb.
5 years, 6 months ago in reply to: Attachment of Custom Single Picture in Resume with dp of Employer #1082575Hi,
I don't really understand what you mean. Can you describe more clearly?
When you add a custom field, it will automatically be displayed in the general infomation section.
Best regards,
tb.
Hi,
1, Mobile style: you can add these lines to Custom CSS or style.css of Child Theme:
.header-2 .navbar-toggle.collapsed{
color: #2e2e2e;
}
2, This option is currently unavailable. You will have to customize the code for the "jm_the_job_meta" function in (/noo-jobmonster/framework/job/job-template.php) file.
3, Disable click: You can add these lines to Customizer -> Custom Code -> Custom Javascript
jQuery(document).ready(function ($) {
if($('.jobs.posts-loop').length > 0){
$('.jobs.posts-loop').find('a').on('click', function(e){
e.preventDefault();
});
}
});
Best regards,
tb.
Hi,
You need to active Child Theme and add this function to functions.php file of Child Theme:
function noo_can_post_resume_review($resume_id = null){
if( empty( $resume_id ) )
return false;
// Resume's author can view his/her resume
$candidate_id = get_post_field( 'post_author', $resume_id );
if( $candidate_id == get_current_user_id() ) {
return true;
}
$can_view_resume = false;
// Administrator can post review all resumes
if( 'administrator' == Noo_Member::get_user_role(get_current_user_id()) || Noo_Member::is_employer(get_current_user_id())) {
$can_view_resume = true;
}elseif( isset($_GET['application_id'] ) && !empty($_GET['application_id']) ) {
// Employers can view resumes from their applications
$job_id = get_post_field( 'post_parent', $_GET['application_id'] );
$company_id = noo_get_post_meta($job_id,'_company_id');
$employer_id = get_post_field('post_author',$company_id);
if( $employer_id == get_current_user_id() ) {
$attachement_resume_id = noo_get_post_meta( $_GET['application_id'], '_resume', '' );
$can_view_resume = $resume_id == $attachement_resume_id;
}
}
return $can_view_resume;
}
Best regards,
tb.
5 years, 6 months ago in reply to: Mobile view is not viewable due to padding for perfect desktop view #1082562Hi,
Your custom CSS breaks down the web when running on tablets and mobile phones.
I have customized on 2 sections: I use shortcode "Heading Text (align: center)" and "Single Image (align: right)" and Row (use Container).
Note: Images will skew when run on mobile or tablet.
=> To make it easier, you can use image sizes of 580x286 instead of 490x286.
You will only need to use shortcode "Single Image (align: center)".
Best regards,
tb.
Hi,
I checked your site and logo still normal works.
You can remove the browser cache or try with anonymous browser.
- Because each header is a fixed style, you can't move the position, you can only show/hide it.
Best regards,
tb
Thank you.
I will close this topic. You can create new topic when having a new problem.
Best regards,
tb.
5 years, 6 months ago in reply to: How can persist my code edit when update jobmoster new releases? #1082557Hi,
You need to use Child Theme for your customizations.
https://developer.wordpress.org/themes/advanced-topics/child-themes/
Best regards,
tb.
Hi,
The issue has solved. Please reload your site and check again.
I added these lines to job_package.php file
Hi,
- Firstly, you need to make sure that the mailing function works normally on your site.
- We use WP Cron for these 2 functions: When you create a Job Alert and set a time period (eg: 1 day) to activate the task. After that period of time (1 day from the time of Job Alert creation), if a user visits your site, this cron will be activated.
- You can use this plugin to manage cron on site:
https://wordpress.org/plugins/wp-crontrol/
Best regards,
tb.
Hi,
I removed these lines, please reload your site and check again.
Best regards,
tb.
Hi,
- With 2 field "Post Job with Job Category field" and "Post job with job type field": You go to Jobmonster -> Custom Field -> Job tab -> uncheck option "Integrate Custom Field with Job Package".
- For the rest of the fields, I need an account with adminstrator privileges. I cannot customize the code with the above account.
Best regards,
tb.
Hi,
You currently enable ssl protocol for your website. Some css paths still hold the http: // protocol.
I installed the Reallty Simple SSL plugin and it solved this problem.
Please reload your site and check again.
Best regards,
tb.
5 years, 6 months ago in reply to: Register candidate using Rest wp-json for email validation #1082543Hi,
Email confirm functionality is included in class-email-confirmation.php file
(/wp-content/themes/noo-jobmonster/framework/add-ons/)
Hope it helps.
Best regards,
tb.
Hi,
I have updated some code lines.
Please reload your site and check again.
Best regards,
tb.
This reply has been marked as private.5 years, 6 months ago in reply to: hide/remove "Text Area Field" &"Notification Email" blocks and add dummy texts #1082540Hi,
1. Hide field:
- Text Area Field: You go to Jobmonster -> Custom field -> Job tab -> remove this field.
- Notification Email: This is the default field, and there is no option to turn it off.
You can use Child Theme and customize /wp-content/themes/noo-jobmonster/layouts/forms/job_form.php file.
2, You go to Jobmonster -> Settings -> Job -> Default Job Content -> edit the text
Best regards,
tb.
Hi,
- Topbar mini cart: I added these lines to Custom CSS, you can reload your site and check again.
- You go to Customizer -> Typography -> Custom Font -> select your font
Best regards,
tb.
Hi, @Ozair
Removing js from Google map is more difficult than Bing Map. Therefore, to remove the Google Map API, you need to set Map Type = Bing Map (I mentioned earlier). Then use the above code to remove the Bing Map API.
@Sofer770: If you remove Google API Key or remove map script then Map API will not work on your site.Best regards,
tb.
Hi, @sofer770.
Please create a new topic and include link your site and wp admin account info.
I will help you check.
Best regards,
tb.
Hi,
It looks like your menu doesn't have enough space to appear on one line.
You go to Customizer -> Header -> Header Style -> select the style that fits your site.
Best regards,
tb.
Hi,
- If you choose the Free package (price = 0), the order will be automatically updated -> you cannot return to change the package. The back function only works when you select a package that costs > 0
- These packages revolve around the function "Post a Job" and "Post a Resume". So it will have default fields. If you want to change the text or hide these fields, you can use Child Theme and customize 2 files /noo-jobmonster/layouts/job/job_package.php and /noo-jobmonster/layouts/resume/resume_package.php.
- For the fields you added from Custom Field, you can change the field name in here:
Best regards,
tb.
-
AuthorPosts