We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 12365
    • 1 Posts
    Hey All,

    I have been scouring for a few days now. Basically, all I am trying to do is check if a user is logged into MODx on a Wordpress Blob page (same domain.)

    I already use the following within MODx:

    $loggedGroup = $modx->isMemberOfWebGroup( array(
    	'MyGroup'
    ));
    if ($loggedGroup === true) {
    	//do something...
    } else {
    	// do something else...
    }
    return $output;
    


    Any thoughts/suggestions?

    Cheers,

    Chris