Code

Discussion on Quform - WordPress Form Builder

Discussion on Quform - WordPress Form Builder

Cart 36,092 sales

ThemeCatcher supports this item

Supported

This author's response time can be up to 1 business day.

6660 comments found.

When I click submit button, a error dialog popup show “An error occurred submitting the form”. Form is submitted and can view data in admin. Why this happens?

Please see this page for help.

Regards, TC

HI how do i change the size of the captcha box thanks

Hi,

You would need to add custom CSS for this, and you might need to end up changing many different aspects depending on your what you need. Have you tried the ReCaptcha themes available in the Element Settings – themes?

Regards, TC

Thank for your help, I’m just trying to get a form to fit in the sidebar and the recapcha over hangs. Is there a way i can fix the other captcha to work with w3 total cache

I’ve made a guide here for creating a smaller reCAPTCHA theme.

Regards, TC

Sorry but one last question before I purchase. Is there also a summary function? Meaning when someone fills out a form and clicks a next (or similarly named) button, is it possible to generate a summary of particular entries such as “please check your entries again” before hitting the send button? Also need to include small print and please read and accept the terms and conditions.

Thanks in advance,

Andy

There isn’t a summary function in the plugin. We have a guide here for terms agreement field.

Regards, TC

I have a question please, I already bought the product but i didn’t try it yet. Can you tell me please if there is a option so i can link the send button on the end of the form to another page on my website? I mean after people with click on the sent button they will be sent to another page in my web.

Hi,

In the Form Builder go to – Settings – General – Successful submit options – On successful submit: Select Redirect, And choose the page in which to redirect to after the form is submitted.

Regards, TC

Hi, Can i build multi forms ?

You can build as many forms as you want.

You can’t have multi-page forms at this time.

Regards, TC

Hello, I am having issues saving my form.. the save button just flashes 3 dots on a loop, constantly, after clicking it. I have tried going out and back in to the builder but I just have to start again and the same thing happens. This is my first attempt at building a form with this plugin. Nothing found in the help files on themecatcher site for this.. any suggestions?

playing with the form builder, added all fields and tried saving after each one was added.. it only failed to save after email address field was added.. have tried this many times, stalls on email. hope this helps.

solved.. (so far). email.php was missing / not installed for unknown reasons. [/wp-content/plugins/iphorm-form-builder/admin/includes/elements/settings/validators/email.php]

That is strange, but glad it’s solved :)

Hello,

I have purchased this plugin which is excellent (I can give the license number).

Do y know if it is possible to make an automatic export of entries ?

My client need to export each 5 minutes all entries in an crm tool.

Thanks for your answer.

There isn’t an API for this, so you’d be looking at querying the database directly for the entries. Have you considered saving the custom information to the CRM directly when the form is submitted, you can use the same hook shown in this example with your custom code.

Regards, TC

Hello,

Can this plugin be used to call an API using search terms entered by user?

Thanks.

There are hooks you can use when processing the form to run custom PHP code, with access to the form data. Example of hook before the form is processed, example of hook after processing.

Regards, TC

There is a JS error in Custom Contact Forms plugin “Uncaught TypeError: Object [object Object] has no method ‘datepicker’” custom-contact-forms-datepicker.js line 4

Please kindly advise.

I don’t get this error with both plugins installed, can you post a link to the page?

Regards, TC

Hey What file types can it upload? So far I have discovered that only JPGs work, i need it to upload Word docs and PDFs. Is this possible?

Cheers

Hi,

Go into the File upload element Settings – Optional tab – Allowed file extensions. You can set the file types there.

Regards, TC

Is there a way to add coupon codes into a form?

Thanks in advance.

Sorry yes, I’m designing a new business site for a telecom company and the orders are form based where payments are only subscription (no credit cards transactions etc.) so your forms are perfect for this. But we do have instances where we promote a product with a promotional code and the customer uses the code to receive the special discount and needs to be database driven too. So the code needs to be verified as correct when entered.

Thanks Andy

Ok I think I have just found what I was looking for under the “Advanced Tab” using “Validators” > “Identical”. Works perfectly and is received in the database :)

Andy

Hello,

I’m using the enfold theme, and i’m having a problem with the tooltip and the margin-bottom, my form is too much under and the tooltip doesn’t appear.

Hi,

Could you please send a link to your form. You can send it privately via our profile page.

Regards, TC

Hi, I have two complicated questions which any help will be appreciated.
Question one:
I have a dropdown select menu with two values YES – I do have a username and NO – I don’t have a username. When selecting the NO – I don’t have a username, the form proceed to the next level.. But when selecting the YES – I do have a username, then precede the following procedure: Three elements are showing up [field: username], [field: verification code] and [button: check], until here everything is working fine. Now, I want to check if the given data exist in an extern database, table: users and if it is exist pull the data from the database and add it to the field above, remove the check button and show up a new button to proceed the form. If the given data is wrong or doesn’t exist show up an error message.
Question two:
I m inserting some data to an external database in two cross ways and in to two different tables at each time a form is submitted.
First way (table: quotation):

add_action('iphorm_post_process_8', 'quote_save_data', 10, 1); 
function quote_save_data($form) { // Get the submitted form values from normal fields 

$test1 = $form->getValue('iphorm_8_10'); 
$test2 = $form->getValue('iphorm_8_11'); 
$test3 = $form->getValue('iphorm_8_12'); 
$test4 = $form->getValue('iphorm_8_13'); 
$test5 = $form->getValue('iphorm_8_14'); 
$test6 = $form->getValue('iphorm_9_11');
$test7 = $form->getValue('iphorm_9_12');

// Get the submitted form values from hidden fields 
$test8 = $form->getValue('iphorm_9_13'); 
$test9 = $form->getValue('iphorm_9_13'); 

// WordPress database class 
$wpdb = new wpdb('root', 'password', 'databasename', 'localhost'); // Insert to the database table 
$wpdb->insert('quotation', array( 

'project_id' => $test1, 
'client_id' => $test2, 
'created' => $test3, 
'expire' => $test4, 
'project_name'=> $test5, 
'project_address' => $test6, 
'amount' => $test7,
'status' => $test8,
'notes' => $test9
)); }

Second way (table: users):
I want before inserting the data to the table, first check if the data already exist in the database for the fields: [company], [firstname] and [lastname]. If the data exist in the database precedes the next procedure: Get the [id] for the already existing client and add it to the table: quotation for the field [client_id].
If the data do not exist in the database for the fields: [company], [firstname] and [lastname] proceed the next procedures: (1) from the given data by the fields [company], [firstname] and [lastname] get the [firstname] and add it as a username in the table: users and also check if this username already is in use by another client. If it is in use add three more unique characters (letters or numbers) at the and of the firstname example: john-001. (2) Insert the data in the table [users] and also add the [id] for this new client in to the table:quotation for the field [client_id].
add_action('iphorm_post_process_8', 'quote_save_data', 10, 1); 
function quote_save_data($form) { // Get the submitted form values from normal fields 

$test10 = $form->getValue('iphorm_10_10'); 
$test11 = $form->getValue('iphorm_10_11'); 
$test12 = $form->getValue('iphorm_10_12'); 
$test13 = $form->getValue('iphorm_10_13'); 
$test14 = $form->getValue('iphorm_10_14'); 
$test15 = $form->getValue('iphorm_10_15');
$test16 = $form->getValue('iphorm_10_16'); 
$test17 = $form->getValue('iphorm_10_17');

// Get the submitted form values from hidden fields 
$test18 = $form->getValue('iphorm_10_18'); 
$test19 = $form->getValue('iphorm_10_19'); 

// WordPress database class 
$wpdb = new wpdb('root', 'password', 'databasename', 'localhost'); // Insert to the database table 
$wpdb->insert('users', array( 

'firstname' => $test10, 
'lastname' => $test11, 
'company' => $test12, 
'email' => $test13, 
'phonenumber'=> $test14, 
'address' => $test15, 
'city' => $test16,
'state' => $test17,
'username' => $test18,
'verificationcode' => $test19
)); }

in anticipation of your response, Jiannis

1. I think this would need to be done with custom JavaScript code. Add a button e.g. “Verify” next to the fields and hook it up to an Ajax request which will check the database and set the field values if successful or show an error if not.

2. You just need to convert the description of what you want into PHP code :) You may need a PHP developer if you don’t know how, writing this is outside the scope of our support.

Regards, TC

Thanks for the quick response. For the question one I will try to do this with javascript and for the question two I will come soon with the php code.

Thanks anyway, Jiannis

hello,

just seen that you still can use quform for forms of the mymail plugin. teherfore i found a workaround with changes to functions.php.

so with this changes in functions.php you can use quform contact form besides quform mymail newsletter subscription form?

br,

newbie2004

I’m not sure I understand. Do you mean when you are using this integration function? You can use this instead of the MyMail subscription form and it will register your subscribers.

Regards, TC

yes, that function should be used and beside a “normal” contact form (which of course is powerede by quform ;-)) should be also used. thats no problem – still when editing functions.php?

It’s no problem they can work at the same time, this change is just an extra action that is performed in addition to the normal form processing.

Regards, TC

hi the JS calendar option does not show on the live site, the calender icon shows in the preview but on the live page the calender is missing, i tried to resgister in support i have received no email, please assist

We sent you a reply 2 days ago:

Hi,

I had a look at your form, I think this troubleshooting guide will fix your problem. Try it out and let us know if you are still having issues after.

Regards, Allan

what of the calender issues

It’s caused by the same problem explained in the linked page, the extra tags are breaking the JavaScript which is breaking the calendar.

Regards, TC

Has this plug in been tested with the Genesis framework? I have tried several form plug-ins, such as contact form 7, and they didn’t work. Please let me know.

We haven’t tested it with the framework, but we haven’t heard any reports of any issues with it. I can’t imagine why it wouldn’t work.

Regards, TC

Hi, Some of our customers are having problems with sending our quform. The problem only seems to happen on firefox and it does not happen on all computers. After clicking send we get the message “This field is required”. but it does not show what field and all of the required fields have been completed. I hope you can help. Brian.

Can you post a link to the form?

Regards, TC

Can you try disabling the Flash uploader, by going to File Upload element settings, Optional tab, untick “Enable Flash uploader”. The Flash uploader relies on PHP sessions and I think there is a conflict with another plugin or your theme.

Regards, TC

Hello

Yesterday I purchased this item, very very best item

how can I remove all css, http://estedentonline.info/wordpress/?page_id=8 i want to set only a form like preview form http://s017.radikal.ru/i430/1306/be/efb9422b8c72.jpg thank you

Hi,

It sounds like what you need is to create a new blank template for your WordPress theme to display the form on.

You can read about templates here on the WordPress site.

Regards, TC

thank you Can I embed it to html?

A guide for this here.

Regards, TC

Hi I was wondering how did you manage to get the fields next to each other?

Hi,

See this video it shows you how to make columns using the Group Element.

Regards, TC

I’m trying to make an Auto Insurance Quote form. My question is about conditional logic. Does the form have this functionality:

After filling out their name and information – they see 2 radio buttons (yes or no) that ask if there are any additional drivers – if they click yes – they are shown a whole new set of (the same) questions (about their name and information).

After this is complete, they can move on to the next section of the form.

Is this possible with this plug-in?

Yes you can create a group of fields (with the Group element) and have conditional logic rules to show this Group only if they choose Yes.

Regards, TC

Hello – my form has several groups which have 5 columns of information each. The far left item has a checkbox and using html widgets i have set up 4 more columns of data that pertain to that check box unit (with hidden widgets so i can label each piece if information in each column). Ideally, I would like if the user could check the box on the far left item and if it’s selected the group data will show up in my email. However, since they are html widgets, all the information from all groups is being emailed to me even if the far left item isn’t checked. Is there a way to connect all the data within the group to be emailed if that first checked item is marked? Thanks!

I’m not sure what you mean by html widgets. If you set up conditional logic rules to hide the other fields unless the checkbox is ticked, it shouldn’t show in the email. Another option is to customize the email content in PHP and use “if” statements to only show certain values depending on the values of other fields.

Regards, TC

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey