NooTheme Premium WordPress Theme › Forums › Jobica › Layouts of resume are not working and some else questions
- This topic has 7 replies, 2 voices, and was last updated 4 years, 2 months ago by dangdv.
-
AuthorPosts
-
4 years, 3 months ago #1206566
Hi, team! Your product is great but I have some problems:
1) Layouts of resume are not working: I choose different layouts (in Jobica settings or Customizer) - but I see only one result (screenshot is added)
2) I want to add on registration form first and second name fields, but in the settings I can choose only address field or phone field.
3) I use Elementor Pro and I post custom Elementor footer entire site. But in result subheader of your theme is missing, and profile photo on job and resume post is cut by half.
I can't give you access to my site, because I use Open Server for development and only done product will be posted on hosting.
Attachments:
You must be logged in to view attached files.4 years, 3 months ago #1206627Dear.
1. That problem because the Jobica theme allow Candidate select details resume layout when post a resume the resume will display by template Candidate selected. the setting 'Resume Details Layout' in Customizer only work when resume not have custom template, you can see resume select template in meta box 'Select layout detail template' when edit resume in admin.2. If you want add First Name and Last Name field for registion form. Please install and switch your site to use Jobica Child theme, then add custom code to file functions.php of Jobica child theme.
add_action('noo_register_form_start', function(){ $prefix = uniqid(); ?> <div class="form-group row"> <label for="<?php echo $prefix; ?>-first_name" class="col-sm-3 control-label"><?php _e('First Name','noo')?></label> <div class="col-sm-9"> <input type="text" class="first_name form-control" id="<?php echo $prefix; ?>-first_name" name="first_name" required placeholder="<?php echo esc_attr__('First Name','noo')?>"> </div> </div> <div class="form-group row"> <label for="<?php echo $prefix; ?>-last_name" class="col-sm-3 control-label"><?php _e('Last Name','noo')?></label> <div class="col-sm-9"> <input type="text" class="last_name form-control" id="<?php echo $prefix; ?>-last_name" name="last_name" required placeholder="<?php echo esc_attr__('Last Name','noo')?>"> </div> </div> <?php },1000);
3. That problem because the heading in Jobica is loaded in header.php file you can see code noo_get_layout( 'heading' ) in file header.php of Jobica theme. When use Elementor Pro to custom header or footer, please add custom code in file functions.php of your theme to display heading when use Elementor Pro custom header.
do_action( "elementor/theme/after_do_header", function(){ if(function_exists('noo_get_layout')){ noo_get_layout( 'heading' ); } } );
Best regards.
4 years, 3 months ago #1206675Thank you for answer! But:
1) How can I turn off selecting of layouts on resume post page for setting only one by default? And there are 5 styles of resume layout in Jobica settings and only 3 styles of resume layout in meta-box. How can it be?
2) When I choose boxed layout for my site in Customizer there is the shadow around site box. How I can turn off this shadow? I trying reset all styles on page (for finding needed style or css) through browser utilities but shadow always present on page.
3) When I choose boxed layout (as in question 2) dashboard page (member page) is fullscreeen, how can I set it in boxed layout?
4 years, 3 months ago #1206733Dear.
1. If you want do it, please go to admin menu 'Jobica -> Settings -> Resumes' and un-select all templates in setting 'Select Resume Detail Template'Also, to fix resume template only 3 styles, please delete 'Jobica Core plugin' on your site, then go to admin menu 'Appearance -> Install Plugins' and install Jobica Core plugin again to get latest version 1.2.12 to fix your problem.
2. That is default style of theme, if you want remove it, please add custom css on your site
body.boxed-layout .site{ box-shadow: none !important; -webkit-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; }
3. Because the Member page user style with menu on left, so, it can't apply boxed style.
Best regards.
4 years, 2 months ago #12070091. How I can un-select all templates? There is the simple list of templates in settings area (screenshot is added). There are no checkboxes or radio-buttons for selecting\un-selecting (there are radio-buttons in jobs settings area only).
And I have one new question:
Will iIt be difficult to add new role in your theme? Can I do it by role-settings plugin or I'll need re-write all code with adding parameters for new role ( it needs for recruitment companies, which will have another custom fields than standart employees)
Attachments:
You must be logged in to view attached files.4 years, 2 months ago #1207085Dear.
1. Please read more in HERE to un-check options of multi-select. if you can't do it, please kindly send for me admin account and your site URL via private reply, i will check to help you.2. Sorry, the Jobica not support add new user role and if you want do it, you need custom many core of Jobica.
Best regards.
4 years, 2 months ago #1207196Greetings!
1) Link (HERE) is broken (un-clickable). Can you give me another link for un-checking layouts of resume?
2) Does your theme include UI (Dashboard) for administrator? Because new added jobs\resumes are not appear in job and resume tabs in WordPress administrator panel.
I can't give you access for admin panel, because I use local OpenServer software for development.
4 years, 2 months ago #1207204This reply has been marked as private. -
AuthorPosts
You must be logged in and have valid license to reply to this topic.