Resume Manager: Hide sign-in fields in resume submission form

← Back to Resume Manager

Note: All code examples on this site are provided for developer reference/guidance only and we cannot guarantee that they will always work as expected. Our support policy does not include assistance with creating, modifying or debugging code from any code examples, and they may be changed or removed if we find they no longer work due to changes in our plugins.


To hide the sign-in form fields in the resume submission form, add the following code to your theme’s function.php or through the https://wordpress.org/plugins/code-snippets/ plugin.

add_filter( 'submit_resume_form_show_signin', 'false' );
Resume Manager Documentation