• In the latest update of the white label cms plugin, the editor doesnt see the custom welcome screen when they login. Instead of the custom welcome screen, they see their profile settings screen. Even when i disable the profile settings menu for editors.

    In the previous version all worked just fine. Could you fix this ?

    http://wordpress.org/extend/plugins/white-label-cms/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try this (worked for me):

    Go to your wp-login.php file and find this snippet:

    if ( ( empty( $redirect_to ) || $redirect_to == ‘wp-admin/’ || $redirect_to == admin_url() ) ) {
    // If the user doesn’t belong to a blog, send them to user admin. If the user can’t edit posts, send them to their profile.
    if ( is_multisite() && !get_active_blog_for_user($user->ID) && !is_super_admin( $user->ID ) )
    $redirect_to = user_admin_url();
    elseif ( is_multisite() && !$user->has_cap(‘read’) )
    $redirect_to = get_dashboard_url( $user->ID );
    elseif ( !$user->has_cap(‘edit_posts’) )
    $redirect_to = admin_url(‘profile.php’);

    Change the last line to:
    $redirect_to = get_dashboard_url( $user->ID );

    Should work!

    I agree. This needs to be fixed ASAP.

    Thanks for the workaround, sarahcclose, but, personally, I refuse to edit core WP files. Surely there’s a way to fix this in the WLCMS files.

    Plugin Author Video User Manuals

    (@videousermanuals)

    Hi, as mentioned in the other thread, we can’t replicate this problem – so if you could help us in what configuration you have the menus hidden etc, we can sort this out.

    Hacking wp-login.php is not the best approach – but works for the time being 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: White Label CMS] Welcome screen editor not showing’ is closed to new replies.