6450 comments found.
Hello,
I would like to add just a Country request field (showing full list of countries) instead of asking for the full address.
Is that possble with your plugin ?
Thanks
Hi
You can add a Select Menu to the form, then in the Bulk Options section you can add the full list of countries. See this video for where to find it.
Regards, TC
Is there a divider shortcode? I tried using in html block but this does not work. I thought there might be a spacer/divider widget as it is very important element.
Hi
I don’t know why the <hr /> in the HTML element would not work for you, it works for me.
You could try adding a div with a custom class in the HTML element:
<div class="my-divider"> </div>
Then adding the styles for it to Forms – Settings – Custom CSS & JS – Custom CSS (All devices), and customising them to suit:
.my-divider {
padding: 10px 0;
border-bottom: 1px solid #d2d2d2;
}
Regards, TC
Awesome.. thanks heaps 
Hello! Currently, the form results are received one below the other, meaning line by line in a single column. I would like to have three columns, for example. Ideally, in the same configuration as the form itself.
Sorry… the answer is there : https://support.themecatcher.net/quform-wordpress-v2/faq/email/how-can-i-style-my-own-notification-email
can connect to google sheet lead or registration ?
Hi
You can add new rows to Google Sheets from a form submission using the Quform Zapier add-on and this integration.
If by registration you mean creating a registration form that creates new WP users, see this guide.
Regards, TC
Presale question, can I create a journaling space for my user with your plugin? I need that the input can only be viewed by that specific logged users (not public) and ideally that I can show in a calendar a dot with previous entries so they can click on that date and view their input that day? I have seen other form software how to but I don´t want to paste the link to not spam
Hi
While there is nothing built into the plugin to display entries to the user, we have plugin here that can do it. Click Download ZIP to get an installable WordPress plugin.
Once the plugin is installed and active, you can use the shortcode [show_user_entries id="1"] to show a list of entries for the currently logged-in user (where the number 1 is the form ID). It just displays a list of submitted entries, it would require custom development to have a calendar.
Regards, TC
Can I contact you directly for development of calendar and encryption?
Hi
Feel free to provide more information about what you are looking for, and I can let you know what is possible. We have a guide here for encryption. Unfortunately we are not available for custom development.
Regards, TC
Hi, I have a presale question. With your plugin is possible to have some fields required, but if the user check a box option, make these fields not required? Like for example have name and email required but if the user is 16 years or less, user will check a box and make those fields not required
Hi
One way to do this is to have a Group that contains the name and email fields for those aged 17 or over which are required, and another Group with name and email fields for those aged 16 or less which are not required. Then, in the settings for each group, enable conditional logic and set the rules to show or hide that group depending on whether the checkbox is checked.
It is technically possible to do it with just one set of same name/email fields, but it would require custom code.
Regards, TC
There is no case, the plugin does not work, I do not receive the emails, I have tried all the proposed solutions but it does not work… lost money
Hi
If you have tried all the solutions in our Not receiving email help page, were you able to receive a test email from the WP Mail SMTP plugin (Solution #4), to the email address that is configured to receive the form data?
Regards, TC
I have the full version, I created a multi step using a dev url in my wordpress, and it was capturing all data just fine. I switched to production host name in wordpress. And now find that only one form out of all my forms, the non multi step will capture form submissions. I have checked everything, even uninstalled and re-installed the plugin. I went to your forum, and cannot easily see where i can post or file a ticket. Please help. No additional forms are writing to the database.
Hi
The first thing to check is at Edit Form – Settings – General – Form, the option “Save submitted form data” is enabled.
Also try deactivating and reactivating the Quform plugin.
If this doesn’t fix it, could you temporarily enable debug logging, to see if there are any database errors when inserting the entry?
Lastly, if you would like me to investigate the issue on your site, could you please create a User with the Administrator role and send over the login details and your admin URL to the contact form on my profile page.
Regards, TC
Hello, Is there a way to insert a ‘variable’ in the ULR field in the ‘Confirmation setting window’? The {shortcode} does not work. Please take a look: https://drive.google.com/file/d/1UlB3QW_wAYfcHo0yJHfahxgQf_pOktFB/view?usp=sharing
Hi
The URL is sanitized when the form is saved which is stripping the { } characters, we’ll fix this in the next update.
If you want to fix it now, you could edit the wp-content/plugins/quform/library/Quform/Builder.php file – find this code:
esc_url_raw($confirmation['redirectUrl'])
Replace it with:
sanitize_text_field($confirmation['redirectUrl'])
Note: you’ll need to save the form again with the variable added to the URL after this change.
Regards, TC
Hi, to prevent incorrect use of the form, it would be very useful to limit the number of submissions not only per user, but also based on time, for example a maximum of one submission per day per user. Why is this option not included?
Hi
It would be good to have this, the feature is on our list for future development.
In the meantime it will require custom code to implement this, if you see the legacy instructions on this page, the second example can be modified to check for any submission by the user in the last 24 hours. You may need a developer.
Regards, TC
Ok, if it’s expected in the next updates, i’ll wait. If possible, i ask you to include it in the next update
Hi
Sorry for the delay. Unfortunately we won’t be able to implement this for the next update, please try the custom code solution if possible.
Regards, TC
Pre Sales Question Please 
Thanks 
Hi
The form looks to be too complex for this to be a good fit for Quform.
Quform doesn’t support calculations or adding multiple items out of the box, so it would require significant custom development.
Regards, TC
can i submit the form to whatsapp?
Hi
Recently I can’t upload files and I’m getting an error message “Unknown upload error”
am using WP Hide & Security Enhancer plugin
Hi
The WP Hide & Security Enhancer plugin is changing the upload data in a way that is not expected by Quform, we have a fix coming in the next update but it may be a few days away.
If you deactivate that plugin, the uploads should start working again. If you need the fix sooner, I can fix the issue on your site. If you’d like me to do that, please send temporary admin login details using the contact form on our profile page.
Regards, TC
Hi, pre-sale question: Im looking for a form for an event confirmation. So the idea is when user register, they and admin will receive the email with the user information, but also I need a randome number or something generated automatically, that will be automatically generated and sent to both, user and admin, so that way admin can verify they signed up online. Can I do that with your plugin?
Hi
Yes, there is a built-in way to generate a random string. Add a Hidden field to the form, then go to the field settings and on the Data tab at the Default Value field click the insert variable (code icon) on the right side of the field and choose “Random Unique ID”.
It will generate a random string that will be sent in the email to the admin with the rest of the form data. If you have a different email to be sent to the user, you can insert the variable for the field into the message subject or content of the user email.
Regards, TC
Hi There, I use your plugin (yet to purchase a license). I would like to know if I could do the below:
I am able to create a upload field on the product page however, I also need it to be mandatory, without uploading a document, the customer cannot add the product to their cart.
Customers can still checkout with document being uploaded.
Is this possible with QuForm?
Hi
It will require some custom code do this. Please see the example code here which requires that a file is uploaded before a product can be added to the cart. You may need a developer if you need any modifications.
Regards, TC
add_action(‘wp_footer’, function () { if (!class_exists(‘Quform’)) { return; } <script> jQuery(function ($) { $(’#qute-form’).click(function () { $(’.quform-popup-link-4’).click(); return false; }); $(’.open-popup-form’).click(function () { $(’.quform-popup-link-6’).click(); return false; }); $(’.popup-form-2’).click(function () { $(’.quform-popup-link-7’).click(); return false; }); }); </script> <?php });
echo do_shortcode('[quform_popup id="7" width="780" ]');
echo do_shortcode('[quform_popup id="4" width="780"]');
echo do_shortcode('[quform_popup id="6" width="750"]');
?>
May i know how i use fancy box or mangefic popup options here ?
Hi
You could try this:
echo do_shortcode('[quform_popup id="7" width="780" options=\'{"width":780,"height":400}\']');
It doesn’t say here that your account has purchased the plugin, support will be limited.
Regards, TC
Hi, installed Quform & Quform WPML (and all WPML plugins) can’t find any info how to translate my form to other languages
Hi guy’s,
can anything be added into a form to moderate the amount of responses, over a timed period, from a particular email address?
Ex. – a spammer tries to respond to all users of the site within 15mins, using same email address. Can this email address be limited to 1 email every 15mins or so?
Continually being spammed, they keep changing IP & email address.
Thanks.
Hi
Here is some example code for how this can be done, see the comment below the code for how to set it up. You can add it to your site using a plugin like Code Snippets.
You might want to consider using reCAPTCHA to help stop spam submissions.
Regards, TC
Your code worked a treat!
We are already using reCaptcha and a couple of other security measures. Let’s hope this slows them down!
Great support with this plugin, amongst the best we’ve ever seen, Thank You.
Hello, I need the dates to be able to identify week and weekend for another field logic. Simply, if selected date is WEEKEND or WEEKDAY, different HTML option shows. Of course, there will be other conditions to the logic such as if OPTION1 selected and WEEKEND selected show field3 etc.
Is it possible to identify saturday and sunday as weekend, and other days as weekdays? I wasn’t able to find it in the forum and couldn’t post there either.
Thanks.
Hi
There isn’t a built-in option for this, but you can add a Hidden field to the form to store whether the selected date is a weekday or weekend day and use some custom JavaScript to populate it. You could then use the value of the Hidden field for the logic rules.
We have some example code here for how to do this. See the comment after the code for how to set it up. In the HTML elements, you can for example set the logic rules to [show this field] if [the hidden field] is weekend
Regards, TC
Hello, sorry to send a message just now, and I know that my support has expired, so it’s just a simple question, but I only now need this function, is there any way I can get the logged in user’s data through the form? Ex: Email thank you
I found the option, thank you very much