Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author reputeinfosystems

    (@reputeinfosystems)

    Hello,

    You can achieve this with the ARMember premium version but unfortunately, this feature is not available in the lite version.

    Thanks,

    Thread Starter fabio323ti

    (@fabio323ti)

    im already using premium version of plugin .
    thanks

    Plugin Author reputeinfosystems

    (@reputeinfosystems)

    Hello,

    Due to forum limitations, we can’t assist you here with premium version queries.

    Please open a support ticket with us at https://support.arpluginshop.com/ for premium version-related queries. Our support staff will assist you there.

    Thanks,

    Thread Starter fabio323ti

    (@fabio323ti)

    its not a forum limitations it’s money limitations. you offer this under payment.

    Thread Starter fabio323ti

    (@fabio323ti)

    anyway for your knowledge and your ticket subscription money..

    this is the snippet to redirect for already loggedin page.

    add_action('wp', 'add_login_check');
    function add_login_check() {
    	$user = wp_get_current_user();
        if ( is_user_logged_in() && is_page( [xxxxx, xxxxx, xxxxx] ) && !current_user_can( 'administrator' ) ) {
            wp_redirect('https://tools-assistant.it');
            exit;
    		    }
             }

    replace xxxxx with page id

    Tested and works.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Redirect alredy logged-in’ is closed to new replies.