Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Kishores

    (@kishores)

    There is no application tab.
    job dashboard http://yoursite/user/admin/?profiletab=job_manager

    Here you can edit application.

    Thread Starter sdechomets

    (@sdechomets)

    Do candidates see only the jobs they applied for in job dashboard ? I disabled job dashboard for candidates because they do not publish jobs, they only apply for.
    I’d like to have an application dashboard for candidates in other words 🙂

    sdechomets: how did you disable job dashboard for a certain UM role? Thanks!

    Thread Starter sdechomets

    (@sdechomets)

    It’s quite simple, if you want to remove the “resume” tab or job_alert subnav for employer for ex., in your function.php (or in an included file in it):

    add_filter('um_user_profile_tabs', 'um_job_dashboard_user_remove_tab', 1000 );
    function um_job_dashboard_user_remove_tab( $tabs ) {
         if ( current_user_can('employer')) {
            unset( $tabs['resume_manager'] );
            unset( $tabs['job_manager']['subnav']['job_alerts'] );
         }
    }

    Be careful when removing a “default” tab or surbnav, you’ll have to define a visible tab as default.

    you’re too kind! However, of course for me it didnt work out 😉

    I’m trying to remove the subtabs ‘post a job’ and ‘job dashboard’ from the UM role i created with name ‘Buyers’.

    When i ‘try’ to edit your code to my needs, the only result is that the whole naviagtion bar of member’s profile will dissapear for all UM roles.

    How do I make the user go to your login page instead of the wordpress login page when they hit “login” link — saying user must be logged in to apply?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Application tab ?’ is closed to new replies.