Custom Enrollment Form

1

I came across the need to create a page with a "simple" form, but complex in its structure (I believe).

What I need to do, is that when creating a post in wordpress, where the POST created has a single page (form) of registration, as follows:

  • POST > PHP Online Course / CATEGORY > Online courses

At the end of it, have a LINK for a single page linked to the form for this course, and by the end of the date I can export to CSV or EXCEL.

I tried the contact form and the contact form DB, but I could not generate forms for each separate post.

Does anyone have any ideas?

    
asked by anonymous 02.04.2014 / 23:59

1 answer

2

To assemble the forms, you will need to build a plugin "on hand" (which I do not recommend unless you do not need it), or use a plugin ready. By your description, I think Easy Contact Forms is a good request. It allows you to assemble the form you want with several fields. It sends by e-mail, exports in spreadsheet and saves to database. I think it catches you. It just chatinho to configure.

After you create the various forms, you can use the plugin's own tag to add it to your post (course). Each created form gets an ID, there you simply add in your post:

[easy_contact_forms fid = <id do formulario>]

If you need more dynamic forms, where you look up the values of a combobox in the database, for example. Then maybe you have to develop.

    
03.04.2014 / 01:50