6660 comments found.
Hello, I love your plugin. Please, can you help me to make a register form ?
Hi, have you checked out the forms on this examples page. You can use the export code download to import into your Quform. Maybe that will help you start…
Otherwise, let us know what you need to do.
TC
I tested the forms I made on my site and they just keep showing the bars rotating. It last for minutes. I have your pluggin on two other sites and it works fine. I compared the settings for a form to the settings on another site. All of the settings looked the same, but it still did not work. I had a problem in the past with a really long form not working. I took one of the really long forms and started deleting items. That did not work. Then deleted the entire long form. They form I want to work only asks for an email address. The removed the short form only asking for the email addesss the form is on the page http://www.renttoownhomepa.com/sell-home-seller-financed-home-aka-rent-to-own-home-york-pa/ . Thanks
It is an incompatibility with the W3 Total Cache plugin. To solve this, edit the file iphorm-form-builder/includes/jquery.iphorm.js at the bottom of the file you will see this code:
window.iPhorm.preload([
'file-upload-tick.png',
'captcha-refresh-icon.png',
'default-loading.gif',
'error.png',
'success.png'
], iphormL10n.plugin_url + '/images/');replace it with$(window).load(function () {
window.iPhorm.preload([
'file-upload-tick.png',
'captcha-refresh-icon.png',
'default-loading.gif',
'error.png',
'success.png'
], iphormL10n.plugin_url + '/images/');
});Regards, TC
I am still attempting to place a link to a popup form in my footer to no avail. I tried "<div id="footer-quform"><?php if (function_exists('iphorm')) echo iphorm_popup(1); ?></div>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('a[href="#show-form"]').click(function () {
$('#footer-quform .iphorm-fancybox-link').click();
return false;
});
});
</script>"
This did nothing.
Where does the anchor text go? Also note that my footer menu contain dynamic menus that pull from the Wordpress menus in the backend.
www.avant-media.net/testing
In the WordPress menu editor can you create a new link with the URL set to
#show-formThen the code you posted should work, on your site it looks like you’ve changed the code to
a[href="click here"]The code inside the double quotes here should be <code>#show-form</code>.
Regards, TC
Hi, is there an option to open up forms in lightbox? thx
Yes, when inserting the form shortcode tick the box “Display the form in a popup (using Fancybox)”
Regards, TC
Where exactly is that box? I cant seem to find it… thx
Found the box… But when I click the link nothing happens? Fancybox for WP is installed… Is there anything elese I should do to make it work?
Please guys, I need this ASAP !!!! thx
Can you try going to Quform -> Settings and tick “Disable Fancybox output” if you’ve installed a Fancybox plugin. We include the Fancybox script with the plugin and it could be conflicting.
Regards, TC
Worked like a charm! Awesome! One more question…
I have multiple checkbox option form… Its a list of products. The same form will be on multiple pages. I want a checkbox preselected based on url of a product… Is that possible?
If you go to the element Settings, Optional tab tick “Dynamic default value” and enter product for the parameter name.
If you add the value of the option you want ticked to the URL like so, it will be selected.
example.com/form/?product=Product1
If you don’t want to do it via the URL you can use a PHP function, similar to below. This would be put in to your theme functions.php file and you’ll need to add custom code to detect the URL /post and return the value you want.
add_filter('iphorm_element_value_product', 'mytheme_set_parameter');
function mytheme_set_parameter($value)
{
// Check which post/URL we are on and return the values of the options we want ticked
return array('Product1');
}Regards, TC
I hope I’m not asking much but can u guys PLEASE write whole thing for php function…? I’m not good with php and cant seem to find custom code for detecting url… thx a lot
Can you send me an message to the contact form on my profile page with link to your site and product pages so I can see how it is set up and what the checkbox options are.
Regards, TC
Hi I was looking for radio buttons do you have the circular type of is it just check boxes
John
Radio buttons = Multiple Choice from the right hand menu in the form builder.
TC
Does the form capture the ip address when submitted?
Yes, It is displayed in the Entries – Additional information section.
TC
sorry for my bad english.
Thanks
1. Yes admin can manage entries data.
2. You can give them the permission iphorm_view_entries if you use a role management plugin.
3. It’s not possible to edit the submitted form data, but we hope to add this feature in a future update.
Regards, TC
Hello
Just a quick question. Is it safe to allow people to upload images via the forum ?? Or would this breach my wordpress security having the uploads directory permissions changed, etc?
If you restrict the uploads to only images and your server is configured to process these files as images correctly it is safe. You would need to ask your host if having a writable directory is a security hole if you are on shared hosting, it depends on how the server is set up.
Regards, TC
Is it possible to populate a form with data from a database query
Yes it is possible with the “Dynamic default value” feature, for each field you’d tick this and set a Parameter name, in your theme functions.php file you’d need to add a function to pull the value from the DB and return it. There is an example of this function in the built-in help.
Regards, TC
thanks for you reply. I like to use your plugin for 2 different types of forms. Form 1 would display data from a MySQL database table in a form in readonly mode. Is it possible to disable all the fields on the form so it has default values from the MySQL table and edits are not allowed. Form 2 would allow users to create/update records as per normal.
You could do it with jQuery, if you wrap the read only form in a div with ID read-only-form. Then add the following JavaScript to your theme.
jQuery(document).ready(function ($) {
$('input, textarea, select', '#read-only-form').attr('disabled', true);
});Regards, TC
Hi,
My license key is not working. It was fine before, but now it says the product is unlicensed, and when I try to enter the key and hit “Verify”, nothing happens, the page just reloads as if I didn’t enter anything in.
Thanks for your help.
It sounds like there may be a JavaScript error in your admin section that is breaking it. Can you check for this or try disabling other plugins to allow the Verify to work.
Regards, TC
Many thanks for the lovely plugin!! I want to use the form as a events booking system, and each event will only have 10 places available, is there a way I can add a “Places left” number in the form, and the number will reduce whenever someone submitting the form? Many thanks! BILLY
Add the following code to your theme functions.php file
add_option('places_left', 10);
add_shortcode('places_left', 'show_places_left');
function show_places_left()
{
return get_option('places_left');
}
add_action('iphorm_post_process_1', 'update_places_left', 10, 1);
function update_places_left($form)
{
update_option('places_left', get_option('places_left') - 1);
}Go to any page on your website, then remove this line from the above codeadd_option('places_left', 10);You can then add a HTML element to the form and enter the content:Hurry, only [places_left] places left!If your form ID is not 1, change the number 1 in iphorm_post_process_1. The form will still accept submissions after 10 you will need to manually remove the form.
Regards, TC
i have godaddy as my hosting company, so I’m thinking this is all their fault anyway! 
Hi, I am getting this error when forms are submitted
Fatal error: Uncaught exception ‘phpmailerException’ with message ‘SMTP Error: Data not accepted.’ in /home/content/85/9451085/html/wp-includes/class-phpmailer.php:849 Stack trace: #0 /home/content/85/9451085/html/wp-includes/class-phpmailer.php(660): PHPMailer->SmtpSend(‘Date: Fri, 7 Se…’, ‘-b1_55c255e929…’) #1 /home/content/85/9451085/html/wp-includes/class-phpmailer.php(588): PHPMailer>PostSend() #2 /home/content/85/9451085/html/wp-content/plugins/iphorm-form-builder/includes/common.php(725): PHPMailer->Send() #3 /home/content/85/9451085/html/wp-content/plugins/iphorm-form-builder/includes/common.php(1236): iphorm_process_form() #4 /home/content/85/9451085/html/wp-content/plugins/iphorm-form-builder/includes/common.php(1264): iphorm(‘1’, ’’) #5 [internal function]: iphorm_shortcode(Array, ’’, ‘iphorm’) #6 /home/content/85/9451085/html/wp-includes/shortcodes.php(235): call_user_func(‘iphorm_shortcod…’, Array, ’’, ‘iphorm’) #7 [internal function]: do_shortcode_tag(Array) #8 /home/content/85/9451085/html/wp-includ in /home/content/85/9451085/html/wp-includes/class-phpmailer.php on line 849
what gives? 
I’m not sure about this. Can you try going to Settings -> Email and at “From” address set it to static email address and enter an email address that is associated with your hosting account. Can you also try using PHP mail() to send after the above change, instead of SMTP .
Regards, TC
Hi there, I’m thinking of purchasing your plugin because I have a complex form that I need to make look nice. The form is here: http://www.paazi.com/car-shopping-with-paazi-new-page/
Basically wherever there are lots of options, (make, type, features, etc), I want to structure those in a table, but haven’t been able to do so with Contact Form 7. Is it possible to do this with your plugin? Also, is your plugin compatible with the theme RT-Theme 6?
Thanks-
You can lay out the fields in rows and columns but you can’t have them in an actual HTML table.
It hasn’t been tested with RT-Theme 6 but there are not many themes that are incompatible (I’m not aware of any).
Regards, TC
Hi, how can I display display name, email and website field side by side and then message box under that?
thx
See this tutorial: http://www.youtube.com/watch?v=2JZ-XgNuPx8
Regards, TC
Disregard above… plugin was in two zip files… its ok now.
Hi guys… Can’t install plugin… I get this message..
The package could not be installed. No valid plugins were found.
Plugin install failed.
Our plugin was disabled when I checked.
Regards, TC
IDIOT – I missed some changes – osrry it’s cool.
Thanks for the fixes to the wrong code in your tutorial ,,, however now I get this error.
No I get this – >
Fatal error: Can’t use function return value in write context in /home/.sites/48/site10/web/new/wp-content/themes/u-design/functions.php on line 1475