WordPress Membership Plugin
I’d like to know the answer to this as well – I’m trying to work on a solution in the meantime so I’ll post if I find anything.
In case anyone else is having this issue, I managed to look through the plugin files and find out how the user is being authenticated. I have added the updates to the first part of the code below, in case anyone else has the same issue.
<?php function checkUser() {
$auth = BAuth::get_instance();
if ( $auth->is_logged_in() ) { ?>
<div class="userPIWInfo">
<?php
echo 'Welcome, ' . $auth->userData->first_name . "\n"; ?>