• Resolved teensicle

    (@teensicle)


    Hey everyone! Hit a little snag, i’m trying to edit the message prompt that you user receives if he/she isn’t logged in but wishes to view the”[candidate_dashboard]” shortcode. The message is “You need to be signed in to view this page.” I checked in the “candidate-dashboard.php” file however was not able to find this prompt. Can anyone point me in the right direction? Thank you, it’s much appreciated.

    https://wordpress.org/plugins/wp-job-manager/

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

    (@mikejolley)

    This message isn’t in a template file.

    if ( ! is_user_logged_in() ) {
    			_e( 'You need to be signed in to view this page.', 'wp-job-manager-resumes' );
    			return;
    		}

    You can customise the message easily using https://wordpress.org/plugins/say-what/ if you want to do that.

    Thread Starter teensicle

    (@teensicle)

    Not sure if i did this the right way but i had to edit “class-wp-resume-manager-shortcodes.php”

    Plugin Author Mike Jolley

    (@mikejolley)

    Editing will mean you lose your changes during updates. The plugin method I posted would make it upgrade safe.

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

The topic ‘Editing templates with [candidate_dashboard] shortcode’ is closed to new replies.