Hello guys,
Require some help with combining the two scripts below so they work alongside one another. Basically requiring users to log in to my site or create an account if they don’t have one. Currently the script only asks users to log in, I would like the script to ask non-members to sign up on the same screen. Any help would be much appreciated. Thanks!
<?php echo apply_filters( 'job_manager_job_applications_login_required_message', sprintf( __( 'You must sign in to apply for this position.', 'wp-job-manager-applications' ), wp_login_url( get_permalink() ) ) ); ?>
<?php echo apply_filters( 'job_manager_job_applications_login_required_message', sprintf( __( 'Don’t have an account? sign up here. ', 'wp-job-manager-applications' ), wp_registration_url ( get_permalink() ) ) ); ?>