Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Parse error: syntax error, unexpected ‘/’ —-> i tried … but still there is an error Re: Parse error: syntax error, unexpected ‘/’ —-> i tried … but still there is an error

#95457
TheDoc
Member

This is line 62:

'logged_in_as'             => '

' . sprintf( __( 'أنت مسجل باسم %2$s. خروج' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '

',

I wonder if it’s not liking the language? Try replacing the above with this:

'logged_in_as'             => '

' . sprintf( __( 'Logged in as %2$s. Log out?' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '

',

If that works, then you know it’s something that you’ve changed that isn’t working.