Hi Mickael
I tried your example on this page.
http://cfdbplugin.com/?page_id=508
I crated a page in WordPress then pasted the code in.
I changed the name parameter in the hidden field to name="Client_Registration" and then pasted the shortcode below the form.
When I view the page I can see the shortcode.
Of course it doesn't work.
I'm stumped.
Thanks , Tim
http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/
Michael:
ahh action yes I get it now. I created a landing page for the form and put the short code there but it still won't work properly. I see the short code in the browser. I notice that [cfdb-save-post-data] is not in the short code reference you provide. Any ideas as to what I'm doing wrong?
Thank you in advance for any assistance you provide.
Tim
Here's the code for my simple test form:
<form action="http://you-get-real.com/thanks-for-registering" method="post" enctype="multipart/form-data">
<input type="hidden" name="Client_Registration" value="People"/>
First Name: <input type="text" name="fname" value=""/>
Last Name: <input type="text" name="lname" value=""/>
<input type="file" name="upload"/>
<input type="submit" />
</form>
Here's what I have on the action page
Thanks for Registering.
[cfdb-save-post-data]
Change the first input field to the below and try it:
<input type="hidden" name="form_title" value="Client_Registration"/>
try just this:
[cfdb-save-post-data]
not this:
[cfdb-save-post-data][/cfdb-save-post-data]
Also edit the post in the WP HTML (Not visual) tab and ensure that you have "[" and not some URL-encoded character.
And one more thing, the problem is you named the short code wrong (My fault, I have it wrong in the documentation!)
It is:
[cfdb-save-form-post]
not:
[cfdb-save-post-data]
That did it. It didn't make any sense to me but now it does. The short-code appeared because it was not short-code.