• I want to say great work on the plugin – its amazing. I am having one little issue recently (used to work fine) where I / a user can login and see all the pages fine – rankings / Results / Rules – but when they click on Predict it tells them they need to login and starts a loop. Not sure what has gone wrong.

    The page I need help with: [log in to see the link]

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

    (@antoineh)

    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.

    Thread Starter rowdogz

    (@rowdogz)

    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.

    Plugin Author AntoineH

    (@antoineh)

    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.

    Thread Starter rowdogz

    (@rowdogz)

    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;
    }

    Plugin Author AntoineH

    (@antoineh)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Login Issue’ is closed to new replies.