6663 comments found.
Hi,
i have created a file upload form. When the user clicks upon the upload file button, it open the camera and then when he tryies to upload the file, it says Ajax error..
Can you please help me solve it?
thanks
Hi
Is the file size larger than the upload limits on the server by any chance? Please check the PHP settings described here.
Regards, Ally
You are great. Thanks a lot
I have problem save data to custom database. I create ticket on https://support.themecatcher.net/forums/topic/save-to-database
Your support.themecatcher.net slow respond
I sumbit ticket 19 hours ago. But no respond until now.
Hi
Sorry about the delay, I’ve replied to your ticket.
Regards, Ally
Please check your profile inbox message. London GMT+0 but my zone time GMT+7. When i reply you, my time now is 00:08 AM. Please consider to fast respond. Thank you.
Hi
It may take up to 24 hours for a reply on weekdays. I’ve replied to your ticket.
Regards, Ally
Hi all, this looks like a great plugin. I have a quick query before I buy.
Am I able to incorporate one of your forms on a Revslider, using a shortcode?
Hi
Yes, you can use the shortcodes to display the form in any shortcode-enabled area (see the shortcode section on this page). Let us know if you have any issues.
Regards, Ally
Hi, how can i set that the customers become an email, if they send a message in the quform
Hi
Sorry, I don’t understand your question exactly.
If you want to send an email to the customer when they submit the form you can follow this guide.
Regards, Ally
Are there any estimation forms builder features?
Hi
There isn’t anything built into the plugin for this but we have a guide here for how to do calculations with some custom code.
Regards, Ally
Hi there any way to have a checkbox, with limit of sumissions (not all form just a fied)? by example, i have a form for a curse, when and i wanna show 3 or 4 opctions (dates) for this curse, but with a limit of students, , if have a 10 user that chekc the firs date, this option hide o disable,etc.
Hi
There isn’t anything built into the plugin for this so it would require some custom code. We have some example code here for how to do this with the Radio Buttons field, but we don’t have a similar guide for checkboxes so the code would need to be modified to support that – you may need a developer.
Regards, Ally
Dear Ally
Is it possible to limit form submissions based on user input? For example, I want to create a form where only 20 “Staff members” and only 30 “Students” can register for an event, after which the form closes?
Kind regards
Hi
It’s possible but it will require some custom code. I can give you some example code for this if you could answer a few questions. Is it a single form that will be used for both students and staff members? How are they differentiated exactly? If you have created the form already that would help a lot, if that is the case please send the link to the contact form on our profile page.
Regards, Ally
Hi Ally
Yes, it is a single form that will be used for both students and staff members. They are differentiated by means of a “select menu”. I have created an example of how the form will look and have sent the link to the contact form on your profile page.
Thanks for your help.
Hi
Can you try using the code from this page as a starting point, then following the instructions in the comment below it. Although the code is for a Radio Button it will also work for a Select Menu. You can set it up for the Student option first then duplicate lines 9-34 and set it up for Staff Member in the duplicated code.
Regards, Ally
Hi Ally, it works perfectly. Thanks for your help.
pre-sale question…im intested in the form but is it possible for me to create just a simple form like example: Enter your amount and when the user enters the amount upon submission it added to woocommerce cart for payment? Can you assist me with that when i purchase your form? Thanks
Hi
It should be possible to do this but it will require a bit of custom code. I can help you after you purchase – just send me a message through the contact form on my profile page.
Regards, Ally
I’m try create a form with a select field type but can’t search the value on that field. Can you try open my form https://digitalstudio.id/google-ads-berjamaah/ I think the css can’t load. Help me please how to solve this problem
Hi
The WP theme is setting up the select fields before Quform. Can you try going to the settings for the select fields in the form builder and on the Styles tab at the field “Custom CSS class” enter “stm_not_select2” (without quotes).
Regards, Ally
Done. Thank you
How to create the entry data can be edited by the sender? for example if we want to create Job application form so everytime the job seeker can edit they profile data. Like on the google form can setting like that. How about quform?
Hi
Currently Quform does not have support for senders to be able to edit their own entries, so it would require custom development – you may need a developer.
Regards, Ally
How estimation cost to make that feature?
Hi
We’re not available for custom work at this time. You might want to consider getting a quote from https://codeable.io/
Regards, Ally
Hi, your form plugin looks great but I need a particular function that is not shown on your demo. We need to allow guests to add an additional row of fields like this site https://www.bhfcouriers.com.au/, see the middle section “Package Details”. Could you please advise if this can be achieved with your plugin? Thanks.
Hi
Currently there isn’t a built-in feature for repeatable groups, but we have a guide here for how to do this up to a certain number. With some custom HTML and JavaScript you can change make it use buttons instead of a select menu to add/remove rows, but you may need a developer for that.
Regards, Ally
We expect you to add paypal vs stripe payment method on the form.
Hi
That’s a pretty big expectation since it is not an advertised feature. It is in our long-term plans though.
Regards, Ally
Hey there – when will the signature pad be added as a feature of Quform? Thanks
Hi
It’s pretty high up on our list of priorities but I’m not able to give a date for when this will be added.
Regards, Ally
Thanks Ally. That’s great. In addition, I was wondering whether you have any plans to allow Quforms to automatically populate data into a Google sheet? I know this can be done through Zapier BUT Zapier is very costly and small businesses/organisations probably wouldn’t be able to afford a Zapier subscription.
Hi
We don’t currently have any plans to integrate with Google Sheets directly, since it is already possible through Zapier.
Regards, Ally
Hey Ally – would you consider adding it to your plans? This is quickly becoming a deal breaker for me, and, given the plugin has no capacity to automatically export data elsewhere with the exception of using a very expensive service for prosumers and small businesses (or charities which is who I am working for), Quform could be missing out in the market in the not too distant future. A quick search of other form plugins shows that syncing with Google sheets is pretty standard now – many of which offer free addon plugins or the feature comes as standard. Quform is miles ahead in other ways, but if I cannot get my data to where it needs to go, I’m going to be stuck.
Hi
Thanks for the information – I’ve added it to our plans.
Regards, Ally
Presale: Is there any example to update user fields (email, name, etc)? And how i can make a form to change password? Can i add a checkbox to trigger mailchimp? So user is on the list or not?
Hi
1. You could use the hook quform_post_process to update the user fields with some custom code. For example, you can add the following code to the WP theme functions.php file (or use a plugin).
add_action('quform_post_process_1', function (array $result, Quform_Form $form) {
if (is_user_logged_in()) {
$user_id = get_current_user_id();
wp_update_user(array(
'ID' => $user_id,
'user_email' => $form->getValue('quform_1_3')
));
update_user_meta($user_id, 'first_name', $form->getValue('quform_1_4'));
update_user_meta($user_id, 'last_name', $form->getValue('quform_1_5'));
}
return $result;
}, 10, 2);
Replace the number 1 on the first line with the form ID and replace 1_3, 1_4 and 1_5 with the unique IDs of the Email, First Name and Last Name fields respectively.
2. There is a forum topic here with some example code for a password reset form.
3. Our free Quform Mailchimp add-on has support for conditional logic, in the integration settings you would just need to enable conditional logic and set the rules to run the integration only when the checkbox is checked.
Regards, Ally
Thanks.
Is there any code i can pre-fill the fields – so that user see what he set for mail, firstname lastname?
ok i have found it 
Just browsing your demo and each example generates an error
Hi
Thanks for letting us know.
Do you have cookies blocked in your browser by any chance? The forms have the CSRF protection option enabled which requires that a cookie is able to be saved.
If that’s not the case could you let me know the error message text exactly? Thanks.
Regards, Ally
cookies blocked, nope here’s the error I get on all your form examples http://icecream.me/22f891be3716414aef99e59c93256e8f
Hi
Could you try clearing any cookies for quform.com?
Does it work if you try it in an incognito window?
Regards, Ally
Hi,
Is it possible to create a form that user can upload video or capture video from users camera?
Thanks
Hi
Yes, if you add a File Upload field to the form and a user on a mobile device uses the form they will be able to choose media from their library or take a screenshot or video to upload.
Regards, Ally
Is it possible to direct capture video from camera?
Thanks
Hi
There isn’t an option or feature to do anything other than what is supported by the default browser file upload field.
You can try it here: https://www.quform.com/examples/functionality on my device it allows me to record a video after tapping the field.
Regards, Ally
Hi,
Is it possible yet to create an entry limit on a dropdown field? For instance: We have the options A, B, C and D. For each option in the dropdown, only 8 people can subscribe. So when someone subscribes on A, there will be 7 entries left on A. Is this possible?
Thanks in advance
Hi
There isn’t an option built into the plugin for this, so it would require custom code. There is some example code here to do this, but you may need a developer to implement it.
Regards, Ally
Hello, i bought this plugin a couple of times – i have a presales question for another project – is there any way to disable specials dates and times with the date/time function? f.e. i have a customer, he opens his store Mo- Fr, but not on weekends, i can not disable speciales dates, fe. weekends – is there any way to do this better?
ps i love your plugin
Hi
Yes. It requires some custom code but we have a guide here for disabling both weekend days.
Regards, Ally
thank you so much!!
Hello, how I can validate, if the field contains not allowed symbols, for example I want to validate this ä, Ä, ü, Ü, ö, Ö, ß and warn if the name contains these symbols. I’ve tried it with /^[äÄöÖüÜß]+$/ as validator and invert it. But it not works. Thank you!
Hi
Can you try this pattern instead:
/[äÄöÖüÜß]+/
Regards, Ally
Great!
I have owned version 1.1.X for a few years. The export function does not properly export my “Message” field which can be 1-5 sentences from the customer. So the message is spread out over multiple rows in the exported CSV file. Does a more current version resolve this issue?
Hi
You may be able to resolve the issue by changing the settings when you import the CSV file to your spreadsheet software, by adjusting the delimiter.
If not, I believe v2 would resolve the issue as it uses the PhpSpreadsheet library to generate the file and there are options to specify the CSV delimiter and other settings. You can also export directly to an Excel file. See the migration guide if you decide to upgrade.
Regards, Ally