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.
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.
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.
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!