Community Support Forums — WordPress® ( Users Helping Users ) — 2011-09-02T18:42:12-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=14816 2011-09-02T18:42:12-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14816&p=33791#p33791 <![CDATA[Re: Sign Up Session Not Clearing]]> for specific Pages and/or Posts where s2Member Pro Forms appear.

WordPress comes with a nice utility that makes this easy: nocache_headers()

Try creating this directory and file:
/wp-content/mu-plugins/s2-hacks.php
Code:
<?php
add_action 
("template_redirect", "my_nocache_headers", 1);
function my_nocache_headers ()
    {
        $one_of_these_post_or_page_ids = array (1, 2, 3);

        if (is_singular ($one_of_these_post_or_page_ids))
            nocache_headers ();
    }
?>

Statistics: Posted by Jason Caldwell — September 2nd, 2011, 6:42 pm


]]>
2011-09-01T23:28:12-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14816&p=33724#p33724 <![CDATA[Re: Sign Up Session Not Clearing]]>
I'll email Jason your question, but you may want to google about this too. http://www.google.com/search?q=how+to+c ... ter+submit

Statistics: Posted by Cristián Lávaque — September 1st, 2011, 11:28 pm


]]>
2011-09-01T19:22:45-05:00 http://www.primothemes.com/forums/viewtopic.php?t=14816&p=33692#p33692 <![CDATA[Sign Up Session Not Clearing]]>
I am noticing in the setup and design of our registration process when I fill out the form and then submit, I can go back (hit back button) and the forms still have the info in place. ANy ideas on how to make the sessions time out or clear after sign up? I just want maximum security on the SSL links for my clients.

Thanks for everything, lovin the Pro Plugin!

Statistics: Posted by hcibrent — September 1st, 2011, 7:22 pm


]]>