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.

Hello

I have a question about translating a string, my scenario is like this where i have a wordpress site with two languages, and i have followed your advice where i created two forms and named the labels accordingly works great, but where i have problems is with the “mandatory” text label,... is there a way to have this string also in two languages or is it somehow hardcoded in the plugin?

Thank you for your time

Best Regards

Hi

You can change the text at Form Builder -> Settings -> Style -> Required indicator text

If you mean the “This field is required” error message, it can be set in the element settings for example, Single Line Text -> Settings -> Optional -> Error message if required

Regards, TC

Omg, i am so dumb sometimes,... thank you for your swift support, much appreciated.

Best Regards

Will this form builder support SMS notifications once a the form is submitted?

There is nothing built in for this but it can probably be done with custom development. There is a hook iphorm_post_process you can use to run custom code after the form is submitted. In that code you could use a PHP to SMS library to send the SMS. You will need a developer.

Regards, TC

is there way to: 1. hide Browse button when file is chosen and when file is removed show it again? 2. created new folder from form values like surname_name in Path to save uploaded files. 3. show Send button only when single checkbox is checked.

1. I tried to write some custom code for this but it was causing an error removing a file when the upload button was hidden. So might not be possible.

2. See this page.

3. See this page.

Regards, TC

OK, thanks.

1. If this not possible is any way: a) add class to button when file is uploaded or change name Browse to Done? b) in this moment button Browse go belowe uploaded file. is possible button stay to right of uploadet file? 2.I made Path for uploaded file like Your example with one value. How I can make path from 2 values: example: value1: name value2: surname I need path /value2_value1/ (surname_name)

Thanks for best of the best Form Builder

1. It would require editing the plugin files. The file is added to the queue on line 72 of js/jquery.iphorm.js so you can add the code in there to add a class and change the the name of the browse button. You may need a developer. If you update the plugin the change will be overwritten.

b). You can do this with CSS I’m sure. Inspect the button/uploaded file in the browser to get the class you should target and add custom CSS to the page to position them.

2. I have modified the code from the guide to have surname then underscore then name:

<>function mytheme_override_upload_path($path, $element) { $name = $element->getForm()->getValue(‘iphorm_1_1’); $name = sanitize_file_name($name); } add_filter(‘iphorm_upload_path_1’, ‘mytheme_override_upload_path’, 10, 2);

$surname = $element->getForm()->getValue('iphorm_1_2');
$surname = sanitize_file_name($surname);
return "artists/{$surname}_{$name}/";

Regards, TC

Two years ago you first started saying that we would have the ability to duplicate groups. It’s time to roll this feature out or QuForm won’t be part of my next web build.

I don’t care that it will be a part of the next NO-ETA build, because frankly after all this time even that claim seems disingenuous to me.

Sincerely, a 6x purchaser of your plugin.

Understood. We didn’t expect it to take this long. Hopefully the all of the other new features and improvements in v2 will make up for it.

Regards, TC

Hello!

Pre-order questions: I need that form to be able to save entered data. example: user fills in four fields located on page 1. then, after hitting submit button user is redirected to page 2 where is full form with same four fields from previous page and they are filled with information from page 1. Is it possible?

Ok, cool! Another example:

When user is on full form, they will pick from drop down list a department, electronics. Now, if form is submitted, email goes to electronic departments email and if something else is picked, like, machine department, email is sent to machine department. So, can i do conditional mail recipient?

Example two: same situation like first example, four fields plus one conditional drop-down field. If user picks electronic department, then he is redirected to electronic department full form after hitting submit and so on with other departments.

1. In Form Builder -> Settings -> Email -> Conditional recipients you can configure the email to go to a different recipient based on Dropdown choice.

2. Customise the code to change the redirect URL based on their Dropdown choice. For example, change this line:

$url = add_query_arg($data, 'http://www.example.com/form-2');

To this:

$department = $form->getValue('iphorm_1_5');

if ($department == 'Electronics Department') {
    $url = add_query_arg($data, 'http://www.example.com/electronics-form');
} elseif ($department == 'Machine Department') {
    $url = add_query_arg($data, 'http://www.example.com/machine-form');
} else {
    // Default form
    $url = add_query_arg($data, 'http://www.example.com/default-form');
}

Where iphorm_1_5 is the unique ID of the Dropdown Menu, and change the URLs to the correct form page URLs.

Regards, TC

when I updated this fantastic plugins and the order of entries are now jumbled in my email. :( can someone help please

Updating the plugin cannot affect the order of entries in your email inbox. Did you click one of the headers to sort them?

Regards, TC

Hello,

I’m french. It’s possible to disabled in calendar the old dates ? Not selectable ? It’s possible to disabled day+2 for example for selection ?

If this is not the case, feasible for next update ?

Thanks.

Hi

You can code it with some custom code from this guide. See the section “Prevent past dates from being chosen”.

Regards, TC

Perfect, exactly what I want. Thanks

Hi, I want to purchase this plugin, but first I want to know if I can integrate the data collected by the form to a woo commerce checkout system. Please let me know if and how this is possible.

Thanks

It’s possible to save the submitted form data from Quform somewhere e.g. a cookie using this hook. I’m not familiar enough with WooCommerce to know if you can populate the checkout form from custom PHP code, but if you can then you can load the values from that cookie. You will need a developer.

Regards, TC

Hi there. Is it possible to have one form that goes over multiple pages? If so, how do I put in a page break?

It’s not possible to do this. We will be adding this functionality in a future version, but it will not be any time soon (no ETA yet), it will probably be too late for your project. We have a guide for an expanding form here, which is similar but requires some coding.

Regards Ally

I am having an error on a client’s form with ReCAPTCHA working in conjunction with SSL. I am getting an error saying the site is loading from https but the google API is coming from http? Its causing the image not to load.

https://www.adrenalineautosales.com/financing

Thanks for any input!

I don’t see an HTTPS error related to recaptcha, but I guess you removed it from the form, can you set up a test page with a form with just a recaptcha in it, and send me the link?

There is an HTTPS error with one of the stylesheets though:

Mixed Content: The page at 'https://adrenalineautosales.com/financing' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C800%2C400italic&ver=4.1.1'. This request has been blocked; the content must be served over HTTPS.

Regards, TC

Presale question here… Does the “file upload” work on mobile devices? My users usually upload images after taking the picture with their phones.

Yes it works, but it is a standard file upload field on mobiles so there isn’t upload progress.

Regards, TC

hi guys, I just purchased a second licensed copy. Keep up the great work.

Thank you :)

Hello,

How can I make a form popup when a button is clicked? The button structure would be either:

[button type=”big” color=”red”] Pop Up[/button]

or

”<(a) class=”big-button bigred” href=”#”>Pop Up</(a)>”

The (a) wouldn’t be in brackets of course.

Thanks

See this page.

Regards, TC

Hi, What a great form tool!

Making my life easier…

Is it possible to make a multi-column form? 3 columns actually?

LMK TKS

Chris

Thanks :)

See this video for column layouts.

Regards, TC

Does this plugin support WordPress multisites?

Hi

I have heard from other customers that it works on WPMS, but I haven’t extensively tested it. If you are using the sub-folder site structure you can use one license key for all sites. However if you have different domains for each site then only one of them would be able to be licensed at one time.

Regards, TC

This is just what I’m looking for except that you can’t duplicate a field or group. If I were you I would make this feature my number one priority!

It will be included as part of the next major update, Quform v2. We don’t have an ETA for it yet though. Thanks for the suggestion.

Regards, TC

Hello i got problem with : License A valid license key entitles you to support and enables automatic upgrades. A license key may only be used for one installation of WordPress at a time, if you have previously verified a license key for another website, and use it again here, the Quform plugin will become unlicensed on the other website. Please enter your CodeCanyon Quform license key, you can find your key by following the instructions on this page.

and i just purchased it

Hi

If you get an error verifying the license key, see this page for help.

To find your license key see this page.

Regards, TC

Hi there

I am very interested in your form, but can you please confirm that your form can do this:

Client goes to a WordPress page, fills out the form and then get sent to a page where they can download a white paper.

At the same time, the client gets emailed an email thanking them for their interest and including the link to download that particular white paper that they filled out the form for.

I also get should get an email notification that someone filled-out the form and downloaded the white paper.

I will await your confirmation, then I will purchase right away.

Thank you!

Hi

Yes you can do that. Set up the form to redirect to the page where they can download the white paper, at Form Builder -> Settings -> General.

Add an Email Address type field to the form and set up the Autoreply at Form Builder -> Settings -> Email -> Autoreply, you can attach the white paper using this guide.

By default the admin will get an email for each submission.

Regards, TC

Hi, I have a problem with required fields and uploading large files. The form takes a long time trying to either process or upload the file and then it checks for required fields. The larger the file selected for uploading the longer it takes to process. This is frustrating for my customers, because if they have missed a required field they have to wait a couple of minutes before the form notifies them that they have missed a required field. Is there a way for the form to quickly process if any fields are required before processing the file to be uploaded?

Thanks in advance

Sorry, I think you have misunderstood me. I have a simple form with a upload field with flash uploader activated. I also have selected that a few of the fields are required fields. I have selected to upload a 22 megabyte pdf and on purpose missed one of the required fields and click send. The forms begins to check if all the fields that are required fields have been filled in, 5 minutes and 33 seconds later the form notifies me that one of the required fields is missing data (the one I missed on purpose!) 5 minutes and 33 seconds is a ridiculous amount of time to have to wait to find out that one field is missing data!!! This only happens when uploading files and there is a missing required field, the larger the file, the longer the wait. So my question is, is this a bug? or is there a quick fix. In all my form using experience validation is almost instantaneous. Can this be fixed a.s.a.p, because as it is now, I can’t use it. If you can’t fix it, I would like a refund.

I understand. But my point still stands. If they are submitting the form they will need to upload the files once anyway. So it will take 5 min 33 sec then you get the error, so you fill the field then you get an instantaneous second submission since the file is already uploaded. There isn’t any time lost for the user. There isn’t a quick fix for this. I will make a note to look into this for a future update though. See here for refund.

Regards, TC

Ok, its been my experience that customers walk away from their computer or let it upload overnight when uploading large files, say 250 megabytes which could take up to 30 minutes or more, only to find out that there is a missing required field, frustrating! I understand that you only have to populate the required field and the upload is finished, but my customer doesn’t know that, so I would have to explain it, but by then the customers already irritated, because its not how other forms work. Its hard enough to get customers to fill in forms and making the form validation different or in my opinion backwards just makes it frustrating. You have a great form, but the validation process needs to be fixed. One way would be to implement a multi-step form with validation through each step and you could have the upload on the last step etc, but as it is, its a deal breaker.

My client says the form is working slow anything I can disable to make it faster also I am using conditional statements with show and hide groups. The other issue was when I choose a drop down the group shows but if I choose yet another drop down it doesn’t change properly. http://123bestprice.com/

Maybe you could test it out for me and let me know? Thanks in advance

Hi

What part exactly is the client saying is slow: loading the form page, the logic animation or submission time?

You will need to check the logic rules and the nesting of Groups to ensure the correct parts are being shown.

Can you send me an message explaining the exact parts of the form which aren’t working the way you expect and I can help you with the rules. Also so I can check the logic rules, please send over administrator login details and your admin URL to the contact form on my profile page.

If you’d prefer not to send us the main account login, you can create a temporary user account just for us with the “Administrator” role, which you can then delete when we have resolved your problem.

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