Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Mike Jolley

    (@mikejolley)

    If you mean removing the ‘password’ before the slug, you’d need to use something like this in your theme functions.php file:

    add_filter( 'submit_resume_form_save_resume_data', 'custom_submit_resume_form_save_resume_data' );
    
    function custom_submit_resume_form_save_resume_data( $data ) {
    $data['post_name'] = sanitize_title( $data[ 'post_title'] );
    return $data;
    }

    This would make xxxx-mike jolley just mike-jolley.

    Thread Starter godavid33

    (@godavid33)

    Is there documentation on that “password”? I didn’t quite realize it was a password/I don’t fully understand how it is a password, and where it is set up/who is setting it up.

    Plugin Author Mike Jolley

    (@mikejolley)

    It’s basically there to just randomise the URLs. Its not a true password. So if your instance you have 2 john smiths, they both get different URLs. Thats it.

    Thread Starter godavid33

    (@godavid33)

    ahhh ok, that makes sense. Thanks. I’m using buddypress so I might end up making the URLs relative to the member domain path.

    Thanks Mike!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Resume Manager – changing permalinks?’ is closed to new replies.