Automatic WordPress Login of Logged In ClickFunnels User

I have a client for whom I am building a ClickFunnel with the member area in LearnDash, an LMS that runs on WordPress. A key feature of this funnel is the ability to: Automatically add ClickFunnel customer to LearnDash membership for purchased product (done) Automatically create a WordPress Subscriber account upon successful purchase (done) Automatically … Read more

Session variables not working php

Make sure session_start(); is called before any sessions are being called. So a safe bet would be to put it at the beginning of your page, immediately after the opening <?php tag before anything else. Also ensure there are no whitespaces/tabs before the opening <?php tag. After the header redirect, end the current script using exit(); (Others have also suggested session_write_close(); and session_regenerate_id(true), you can try those as … Read more