jagdishtechnostacks (@jagdishtechnostacks)

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • @jagdishtechnostacks

    Participant

    So, you main issues is, you can’t change styles for “Reply To: element.” ??
    If this is the issue, you can check their css, and make your custom css and add it into your theme’s css file

    @jagdishtechnostacks

    Participant

    Hi, you can use this in functions.php or somewhere where you initialize your code
    /* Redirect to Splash screen if Non Admin */
    function loginRedirect( $redirect_to, $request, $user ) {
    return ( is_array( $user->roles ) && in_array( ‘administrator’, $user->roles ) ) ? admin_url() : site_url(“home/”);
    }
    add_filter( ‘login_redirect’, ‘loginRedirect’, 10, 3 );
    /* Ends */

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