Forum Replies Created
- AuthorPosts
gastonbesada
ParticipantOk, thank Ally!
gastonbesada
ParticipantHi Ally,
Can I create a form programmatically? If yes, do you have a documentation or sample code?
Thanks
gastonbesada
ParticipantHi, Is your script in functions.php ? If yes, you can use follow in functions.php:
function your_custom_function($form)
{
$yourvar1 = $form->getValue('iphorm_1_3'); //you must change the unique element ID
$yourvar2 = $form->getValue('iphorm_1_8'); //you must change the unique element ID
$yourvar3 = $form->getValue('iphorm_1_12'); //you must change the unique element ID//do something with your values here
//....//for debugging purpose
echo '<script type="text/javascript">alert("values = '.$yourvar1.' '.$yourvar2.' '.$yourvar3'");</script>';
}
add_action('iphorm_post_process_1', 'your_custom_function'); //you must change the unique form ID
Note: add_action is a WP hook used in plugin API
http://codex.wordpress.org/Function_Reference/add_actionIn this case ‘iphorm_post_process’ is called by do_action(‘iphorm_post_process’, $form); when the form is successful submitted.
gastonbesada
ParticipantHi, Your custom functions goes in /wp-content/themes/YOUR_THEME_DIR/functions.php always.
Thanks
gastonbesada
ParticipantYou should take a look zoho app builder to integrate with this. https://creator.zoho.com/
In Form builder they have autosave each time someone change the values of the form or element.Thanks!
Attachments:
You must be logged in to view attached files.gastonbesada
ParticipantSorry, did you changed your Form ID -> find the form ID and your unique elements IDs -> find the element ID
gastonbesada
ParticipantAnother suggestion: Include Custom Elements in display each element (form.php) t to help to include custom elements (programmatically). This should help to developers to include elements for integration. Thanks
gastonbesada
ParticipantA new suggestion: Manage bounced emails core, like: http://www.satollo.net/plugins/bounce
Regardsgastonbesada
ParticipantPlease, replace old iPhorms by Quforms in form styles and user capability especially. Thanks
gastonbesada
ParticipantHi Theme Catcher team, First I’d like thank you for your awesome work on this plugin! I love it!.
I’d like to suggest some improvements:
1 – Form Wizard. Like: http://www.display-inline.fr/demo/developr/template/wizard.html
2 – WP dashboard Widget. http://codex.wordpress.org/Dashboard_Widgets_API
3 – 3rd party integration. For salesforce, paypal, mailchimp, sugarcrm, MyMail, etc.
MyMail: http://codecanyon.net/item/mymail-email-newsletter-plugin-for-wordpress/3078294
4 – HTML5 fields: http://www.html5rocks.com/en/tutorials/forms/html5forms/
5 – Front end forms. Like: http://codecanyon.net/item/wp-frontend-form-multipurpose-posting-form/5103469
6 – jQuery file upload: http://blueimp.github.io/jQuery-File-Upload/
7 – Leads management (is a plus!). Like: http://wordpress.org/plugins/leads/Thanks and regards
Gaston- AuthorPosts