How to know from which page/post was contact form sent

580 Views Asked by At

Hi have a kind of catalog system implemented with wordpress posts. Hi would like to create a "Get Quote" button on each post that would open on lightbox a small contact form. My challenge here is, how to get the information of from which page/post was contact form sent. Any ideas?

Cheers

1

There are 1 best solutions below

2
On

You can add a hidden input in your contact form with a value of the name of the page for example:

<input type="hidden" value="contact-form-1" name="getpage">

and include it in your PHP:

$origin = $_REQUEST['getpage'];

and add it in the body of your 'mail' function.