Please check if your user is still a player in the pool. The Football Pool 》 Users page in the admin can be used to check and change the setting for your user.
Hope this helps.
Antoine H – Thank you for the plugin and coming back to me. Its odd the user ( my test user) is still in the pool. What I Found is if I login using the menu bar – it logs me in and I can see all the other pages but the predict (pool) page does not work. If I logout and login directly from the predict / pool page then it works. I must have messed up the login somehow.
If it used to work fine, then maybe you changed something in the settings of WordPress? Or installed a new plugin?
You can try to (temporarily) disable other plugins to see if there is one that is causing a conflict.
Tried the plugins – didn’t help. sometimes it works sometimes it doesn’t. I did find that the page I was using did not have a login / logout button as standard so I added this code directly into the functions file of the theme. Not sure if that causes issues with the users / login process of the prediction plugin?
add_filter(‘wp_nav_menu_items’, ‘crunchify_add_login_logout_menu’, 10, 2);
function crunchify_add_login_logout_menu($items, $args) {
ob_start();
wp_loginout(‘index.php’);
$loginoutlink = ob_get_contents();
ob_end_clean();
$items .= ”. $loginoutlink .”;
return $items;
}
Not sure if that causes issues with the users / login process of the prediction plugin?
I also don’t know, but it should be easy to check by temporarily commenting out this code.