Cynthia, I have been successful in passing the previous page title to the form page. This is how I did it:
1. As Derek has said, you must enable WordPress to create sessions: I found this site very useful:
https://www.myguysolutions.com/2010/04/14/how-to-enable-the-use-of-sessions-on-your-wordpress-blog/
2. On the referring page, (using a plugin that allows PHP in posts) store the required information in a session variable: [php]$_SESSION[‘referringTitle’]=$_SESSION[‘title’];[/php]
3. On the receiving page: echo the variable:
[php]echo $_SESSION[‘referringTitle’];[/php]
The only thing is, I can make the previous page title appear on the page but I can’t then work out to then put it into a custom field that I can send with all the other form data. I don’t understand the instructions.
Can anyone help with this last step?
thanks
Viv