Horje
Allows a user who has the 'edit_others_job_applications' capability to edit job applications posted by anyone. Wordpress Tutorial

Noted That:

  • To install correctly this wp-job-manager-custom-management-role.zip .
  • Fisrt Download the wp-job-manager-custom-management-role.zip to your computer
  • Extract/Open wp-job-manager-custom-management-role.zip to Your Computer.
  • Then, Find readme.txt file inside wp-job-manager-custom-management-role.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.

Start the Tips:

1. First Download " wp-job-manager-custom-management-role.zip " Plugin to your Local Computer. (Click Download)

2. Then, Login to your " yourdomain.com/wp-admin " Dashboard.

/stack/wp/e1593231376d7d849d2-4597-4fa3-a6ff-1eca18f72aab.png

3. Then, Click on " Plugins " + " Add New " from left sidemenu of Dashboard.

/stack/wp/e1593231378Screenshot20.png

4. Now, Click on "Upload Plugin" button.

/stack/wp/e1593231380Screenshot-2019-4-2AddPluginsHorjeWordPress.png

 

5. Now, Browse " wp-job-manager-custom-management-role.zip "  Downloaded plugin from your computer, Where you downloaded wp-job-manager-custom-management-role.zip According to Step – 1 Above then, click on " Install Now"

/stack/wp/e15931461531577025694plugin.png

6. Now, Click on " Active Plugin"

/stack/wp/e15932313830ca45529-bf73-4101-8178-53ae60ce549f.png

7. Then, See left sidemenu. " WP Job Manager – Custom Management Role " folder is added on left sidemenu. Now, Click on " WP Job Manager – Custom Management Role " folder.

   Noted that: If you do not see " WP Job Manager – Custom Management Role " folder on left sidemenu then, see at left sidemenu " Settings " or " Tools ".

8. Now you configure yourself oR Watch video tutorial below about  WP Job Manager – Custom Management Role Configurtions and Settings or How to work " WP Job Manager – Custom Management Role " in your WordPress site.

 

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " WP Job Manager – Custom Management Role " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is WP Job Manager – Custom Management Role
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

Automatic installation

Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t even need to leave your web browser. To do an automatic install, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.

In the search field type “WP Job Manager – Customized Management Role” and click Search Plugins. Once you’ve found the plugin you can view details about it such as the the point release, rating and description. Most importantly of course, you can install it by clicking Install Now .

Manual installation

The manual installation method involves downloading the plugin and uploading it to your webserver via your favourite FTP application.

  • Download the plugin file to your computer and unzip it
  • Using an FTP program, or your hosting control panel, upload the unzipped plugin folder to your WordPress installation’s wp-content/plugins/ directory.
  • Activate the plugin from the Plugins menu within the WordPress admin.

Getting started

Once installed, grant your user(s) the edit_others_job_applications capability.

  1. Using the Members plugin, you can create a new role and click a checkbox to grant the capability.
  2. Or if you prefer to do it manually, add this code to your functions.php file:
    $user = new WP_User( $user_id );
    $user-> add_cap( 'can_edit_posts' );

If you want to restrict your jobmanager user(s) from accessing other areas of the WordPress control panel, add this code to your functions.php file (it expects a role named “jobmanager”):
`
// tweak dashboard for job manager role
function remove_admin_menus() {
remove_menu_page( ‘index.php’ ); // Dashboard
remove_menu_page( ‘edit.php’ ); // Posts
remove_menu_page( ‘edit-comments.php’ ); // Comments
remove_menu_page( ‘tools.php’ ); // Tools
}
if ( appthemes_check_user_role( ‘jobmanager’ ) ) { add_action( ‘admin_menu’, ‘remove_admin_menus’ ); }


// hide jetpack admin menu item from non-admins
function remove_jetpack() { if( class_exists( 'Jetpack' ) && !current_user_can( 'manage_options' ) ) { remove_menu_page( 'jetpack' ); }
}
add_action( 'admin_init', 'remove_jetpack' );
// get logged-in user's role
function appthemes_check_user_role( $role, $user_id = null ) { if ( is_numeric( $user_id ) ) $user = get_userdata( $user_id ); else $user = wp_get_current_user(); if ( empty( $user ) ) return false; return in_array( $role, (array) $user->
roles );
}
`

allows , user , editothersjobapplications , capability , edit , applications , posted , anyone , tutorial ,

Name

Read Article
https://develop.horje.com/learn/1434/reference