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