JobMonster – NooTheme https://nootheme.com NooTheme Fri, 28 Jun 2019 04:15:42 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.1 https://nootheme.com/wp-content/uploads/2018/05/favicon.png JobMonster – NooTheme https://nootheme.com 32 32 How to change some special words in Jobmonster theme https://nootheme.com/knowledge-base/how-to-change-some-special-words-in-jobmonster-theme/ Thu, 06 Jun 2019 05:10:33 +0000 https://nootheme.com/?post_type=ht_kb&p=1075555 Today, we will share you a short and simple tutorial that guide you to change the expected texts via source code.
Please follow these steps to change these texts via source code:
Step 1: Go to :{root}\wp-content\themes\noo- jobmonster\assets\vendor\DataTables\datatables.min.js
Step 2: Search the text do you want to change. You can use the “Find”. Choose the key combination Ctrl-F and enter the word you want to search.
Step 3: Input the text that you want to change and save it.
* For instance:
-You want to change the phrase: Showing … to … entries, it located in line 11431.
-Changed texts:
Thank you for reading, hope you enjoy using our theme.

 

]]>
How to remove the border radius https://nootheme.com/knowledge-base/how-to-remove-the-border-radius/ Wed, 05 Jun 2019 02:17:39 +0000 https://nootheme.com/?post_type=ht_kb&p=1075506 To remove the border radius of company logo in any places of the site, please follow the instruction:
Profile avatar:
https://i.imgur.com/5nwuEIi.png
You can add these lines to Custom CSS or the style.css of Child Theme:
.profile-avatar img {
-webkit-border-radius: 0;
border-radius: 0;
}
https://i.imgur.com/D6IJtl3.png

All image avatar in Table manage of Member Page:
(candidate avatar,company avatar)
https://i.imgur.com/iWPY0Oj.png
You can add these lines to Custom CSS or the style.css of Child Theme:
.member-manage .table tbody td img {
-webkit-border-radius: 0;
border-radius: 0;
}
https://i.imgur.com/xWz5s7v.png

Member heading avatar:
https://i.imgur.com/FA5mM9J.png
You can add these lines to Custom CSS or the style.css of Child Theme:
.noo-page-heading .member-heading-avatar img{
-webkit-border-radius: 0;
border-radius: 0;
}
https://i.imgur.com/8orFAX4.png

Company avatar for Job post:
https://i.imgur.com/XoAxXVx.png
https://i.imgur.com/p4Gyxy4.png
You can add these lines to Custom CSS or the style.css of Child Theme:
.list.loop-item-wrap .item-featured, .style-1 .loop-item-wrap .item-featured,
.list.loop-item-wrap .item-featured img, .style-1 .loop-item-wrap .item-
featured img{
-webkit-border-radius: 0;
border-radius: 0;
}
https://i.imgur.com/9GMqtqa.png
Thank you for reading, hope you enjoy using our theme.

]]>
How to hide locations with no job postings in search field https://nootheme.com/knowledge-base/hide-locations-no-job-postings-search-field/ Tue, 07 Jun 2016 04:35:32 +0000 https://nootheme.com/?post_type=ht_kb&p=48507
In case, you only want to show locations which was included in job postings. Please go to framework/job/job-default-fields.php> change this code
supa117

 

Or you can override function jm_job_tax_search_field_params in childheme. To override a function, you will paste all codes of that function into functions.php file in childtheme:

You can refer to our documentation to know how to override:
https://nootheme.com/knowledge-base/override-parent-theme-function-childtheme/

supa118

 

]]>
How to redirect users to another page after they update profile https://nootheme.com/knowledge-base/redirect-users-another-page-update-profile/ Tue, 24 May 2016 07:34:15 +0000 https://nootheme.com/?post_type=ht_kb&p=47092

1. Employer

 

If you want to redirect employers to another page after they update company profile, please the following codes to functions.php file:

add_action( 'noo_save_company', 'redirect_after_save_company' );
function redirect_after_save_company( $company_id ) {
if( $company_id ) {
noo_message_add(__('Company updated','noo'));
}
wp_safe_redirect('ADD YOUR URL HERE');
die;
}

Replace URL with the link you want.

2. Candidate

In order that candidates will be redirected to another page after they update profile, please go to noo-jobmonster/framework/admin/noo_form_handler.php

Replace the following codes:
wp_safe_redirect(Noo_Member::get_candidate_profile_url());

with these ones:
wp_safe_redirect( Noo_Member::get_endpoint_url('Enter your URL here') );

Replace URL with the link you want.

 

]]>
How to show packages on Packages Page https://nootheme.com/knowledge-base/how-to-show-packages-on-packages-page/ Mon, 07 Mar 2016 03:55:06 +0000 http://nootheme.com/?post_type=ht_kb&p=37375

You can implement steps as follows to show packages on the Package Page:

Step 1:  Go to Products> Product categories> create a category, for example, it is Job Package and its slug is packages

supa58

Step 2: you will go to Pages> create Packages page> paste this shortcode [noo_job_package_list product_cat=”packages”] into the content of the page

supa59

Notice that “packages” in the shortcode above is the slug of job category shown on packages page.

Step 3: go to Products> create a new product> choose a Product category

supa60

Step 4: you will go to Jobs> settings> Job packages> choose Packages page and shown package category> save changes

supa61

 

]]>
How to remove Manage Application Link https://nootheme.com/knowledge-base/how-to-remove-manage-application-link/ Tue, 01 Mar 2016 08:18:45 +0000 http://nootheme.com/?post_type=ht_kb&p=36751
Read the following instruction to learn about removing Manage Application located in the drop-down menu user and deleting manage application link here

supa48
supa47
supa49

 

Please delete the following codes in Layouts -> heading.php:

supa50

 

Delete the following codes in layouts -> user-menu-collapsed.php
supa51

 

Delete the following codes in layouts -> user-menu.php
supa52

 

Note:

♣ We strongly recommend that you should make changes to these files in childtheme
♣ The order of line can change based on each updated version. Therefore, you should find the code according to keywords in files we give you.

 

]]>
How to change page to which users are taken when they sign out of the site https://nootheme.com/knowledge-base/how-to-change-page-to-which-users-are-taken-to-when-they-sign-out-of-the-site/ Tue, 01 Mar 2016 08:03:03 +0000 http://nootheme.com/?post_type=ht_kb&p=36743
Now when users sign out of the site, they will be redirected to homepage. So if you want lead them to another page, you can follow this instruction.
Please add the following codes  to function.php located in childtheme:

add_filter('logout_url', 'new_logout_url', 999999, 2);
function new_logout_url( $logout_url = '', $redirect = '' ) {
$redirect_to = !empty( $redirect ) ? $redirect : '<your logout url>';
$args['redirect_to'] = urlencode( $redirect_to );

return esc_url( add_query_arg($args, $logout_url) );
}

supa46

 

Note:  The order of line can change based on each updated version. Therefore, you should find the code according to keywords in files we give you.

 

 

]]>
How to remove grey color from the job heading background image https://nootheme.com/knowledge-base/how-to-remove-grey-color-from-the-job-heading-image/ Tue, 23 Feb 2016 07:14:19 +0000 http://nootheme.com/?post_type=ht_kb&p=35768
In case, you set this one to be the job heading background image

supa39
However, when it is displayed on the site, grey color.
supa41
To get rid of this color, you will go to layouts -> heading.php > find this code in the red box:
supa40

Replace 0.55 with 0

 

]]>
Different Direction For Sign Up Or Log In https://nootheme.com/knowledge-base/different-direction-for-sign-up-or-log-in/ Tue, 23 Feb 2016 01:44:07 +0000 http://nootheme.com/?post_type=ht_kb&p=35723
Please go to functions.php> add the following codes (we send you codes in the attachment below) to the last line of the file:
supa36

 

Note:
♣ Replace “your path” in the code  with your real path (please notice that the path does not include the domain). For example, your real login link is http://wpthemes.noothemes.com/noopress/jobmonster/aaayou will replace “your path” with aaa
Similarly, if your real register link is http://wpthemes.noothemes.com/noopress/jobmonster/bbb then the register path will be bbb

♣ If you use childtheme, add the following sentence to the function:
require_once dirname(__FILE__) . ‘/framework/admin/noo_form_handler.php’;

supa35

♣ The order of line can change based on each updated version. Therefore, you should find the code according to keywords in files we give you.

supa37

 

Here is the attached file of the added codes

 

]]>
Fix error of installing Visual Composer caused by memory limit https://nootheme.com/knowledge-base/fix-error-of-installing-visual-composer-caused-by-memory-limit/ Sun, 14 Feb 2016 15:03:59 +0000 http://nootheme.com/?post_type=ht_kb&p=34662
Follow these steps:
♣ Error 1: Go to admin panel/Media/ add new to check memory capacity. If your memory limit is 2M then it will not allow you to upload. You will try using these two methods to install Visual composer plugin
1. Extract js_composer file and paste all files included in this file into this folder or you can paste them into FTP:p34

or

2. Increase memory by modifying php.ini file
You can refer to this source:
https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

♣ Error 2: If your site gets 500 error or visual composer can not be loaded, you will add the following code to wp-config.php:

define('WP_MEMORY_LIMIT', '96M');

Then you will go to Plugins> Add New> upload js_composer.zip file> activate the plugin

supa29
supa30

 

]]>
How to add a new field to company profile https://nootheme.com/knowledge-base/how-to-add-a-new-field-to-company-profile/ Sun, 14 Feb 2016 15:00:35 +0000 http://nootheme.com/?post_type=ht_kb&p=34660
Please add the following code to layouts -> company_profile.php
supa24

 

Please add this code to layouts -> noo_company-info.php
supa26

 

Please add this code to framework -> admin -> noo_form_handler.php
supa27

 

The new field will be shown at the position that is under the logo
supa28

 

 

♣ Note

♦ See this image:
supa34
♦ If you use childtheme, add the following sentence to the function:
require_once dirname(__FILE__) . ‘/framework/admin/noo_form_handler.php’;

supa35

 

 

Here is the attached file that contains above codes

 

]]>
How to show all job locations/categories/ types in Advanced Search https://nootheme.com/knowledge-base/how-to-show-all-job-locationscategories-types-in-advanced-search/ Sun, 14 Feb 2016 14:51:49 +0000 http://nootheme.com/?post_type=ht_kb&p=34657
1Please go to noo-jobmonster\framework\admin\noo_job.php, replace the following codes:

1. Job location
supa16
2. Job category
supa17
3. Job Type
supa18

With these codes:

1. Job location
$locations = (array) get_terms(‘job_location’, array( ‘hide_empty’ => false ));

2. Job Category
$categories = (array) get_terms(‘job_category’, array( ‘hide_empty’ => false ));

3. Job Type
$types = (array) get_terms(‘job_type’, array( ‘hide_empty’ => false ));

 

Note: Please notice that the order of line can change based on each updated version. Therefore, you should find the code according to keywords in files I give to you.

 

]]>