Code

Discussion on Quform - WordPress Form Builder

Discussion on Quform - WordPress Form Builder

Cart 36,168 sales
Recently Updated

ThemeCatcher supports this item

Supported

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

6663 comments found.

Hi It looks like there is a JS conflict when using the pupup shortcode on websites with WordPress 5.6.2 and newer, is there a planned update coming soon?

Hi

Could you post a link to the page with the issue or send the link privately to the contact form on my profile page so that I can investigate this further?

Regards, Ally

Hi Ally Unfortunately, I had to roll the site back so that the forms continued to work so the issue is not live. I’ll send over the link with the form on the rolled-back page through the contact link.

Hello, I use the form in three steps. Is it possible if a user uses the first step and jump to step two, to save this data even if the user cancels the process at step two or three. And i can try contact the Client… Thx Rgds Danilo

Hi

There isn’t anything built into the plugin to capture the data before the last page is submitted. However, there are are a couple of workarounds:

1. Have two separate forms, the first contains the important fields you want to capture and it redirects to the second form to get more information. You can pass the data from the first form to the second using this method.

2. With some custom code you can send an email with the currently entered data when the user transitions to the next page. Please see this topic.

Regards, Ally

Hi guys,

For some reason Quform is sending me the admin notification but not to visitor that sends info: e.g. {element|id:5|Email}

I chose the element were visitor puts email. Am I doing something wrong?

Hi

Most likely the email is being blocked by your mail server as a spam prevention measure.

You could try Solution #1 on this page, if that doesn’t work I would recommend Solution #4 for more reliable email sending – the Post SMTP plugin has email logging built-in so you can find out what happened when sending that email.

If you are already using an SMTP plugin or other email sending plugin you can use the plugin WP Mail Logging to find out if something went wrong when sending the email.

Regards, Ally

Can i add radio or chick box, and when the end user selects that radio button, a text box appears where they can enter in a value?

Please advice asap

Hi

When you add a text field to the form, go to the settings for it and on the Logic tab enable conditional logic then set the rules to show the field when the radio or checkbox field is selected.

Regards, Ally

Hey, any possibility to disable the recording of IPs? Its not compliant in the EU..

Hi

Please go to Forms – Settings – Tweaks & Troubleshooting and turn off the option “Save IP addresses”.

Regards, Ally

Suppose a user has filled in a form, and then wants to fill in a similar reply with the same answers already filled in… is it possible to duplicate the form with those answers to another instance, so that those two similarly filled forms will get posted to two different entries in the backend?

Hi

If you go to Edit Form – Settings – Confirmations then go to the settings for the confirmation and set the “Reset form values” option to “Keep form values” it will keep the data from the previous submission.

If you wanted to empty out some values after enabling that, you could have some custom JavaScript on the quform:successStart hook to do that, you may need a developer for this though.

Regards, Ally

Is it possible to start filling out a form, and then share that form with those prefilled answers with another user, so that the other user can fill in other fields and then post the form?

Hi

This is not possible out-of-the-box with Quform so it would require custom development.

Regards, Ally

Hi. quick question; how do I redirect user to go to specific group in the form? Currently I have few groups in a single form; General Enquiries, Volunteer, Donate etc. I use conditional logic to show the group.

Hi Ally,

I don’t see Data tab in the Group element. Do you have email so i can share my details with you?

Hi

The Group element does not have a Data tab. You mentioned that you have conditional logic to show the group, you’ll want to set the value of the field that triggers the logic (using the above method) rather than the group, if that makes sense.

Regards, Ally

Hi Ally. I have found the correct parameter. Thanks for helping

When I got emailed after posting a form in the sandbox, I couldn’t see any link or id to be able to know what email links to what reply in the list. Is there a way to post the link to the reply in the email, or any other way to easily identify what email belongs to what reply?

Hi

You can go to Edit Form – Settings – Notifications then go the settings for the notification. At the Message (HTML) field click the Text tab of the editor and enter the following code:

<a href="http://www.example.com/wp-admin/admin.php?page=quform.entries&sp=view&eid={entry_id}">View this entry</a>

Replace www.example.com with the site URL.

Regards, Ally

Suppose a user is logged in. Is it possible that the user’s name and email are automatically included to a hidden field in the form?

Hi

Please see this page for how to set a field default value, you can choose the variables under User to get the username or email.

For first name and last name you can use {user_meta|first_name} and {user_meta|last_name} respectively.

Regards, Ally

If a form is sent as an email, is it possible to also include the attached files (either as attachment or links) in the email?

Hi

Yes, by default you’ll be sent links to the uploaded files, if you want to attach the files please see this guide for how to do this.

Regards, Ally

Hi There,

There are error for your plugins

plugins/quform/css/kendo.common-material.min.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

plugins/quform/css/kendo.material.min.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

Can you please show me how to fix this?

Many thanks

Hi

Thanks. Source maps will only load when DevTools is open so it won’t cause any issues for normal users. You can remove the line containing sourceMappingURL from the end of both of those files to fix the warnings, we’ll also make this change in the next update.

Regards, Ally

Hi, repeateabel groups (fields + image uploads… etc) on wordpress forms is a feature that is no where to be found all over the internet. So many users need this feature but nobody is developing. I have searched on multiple plugins for WP but none of them have it.

Well, there is almost a year since i need this feature to implement on my website but still not available.

Will there be any chance to have it on next updates? It would be great even if it would be developed as separate an addon for quform.

Thanks.

Hi

The feature is pretty high on our list of priorities but unfortunately I can’t give you an ETA for when it will be implemented.

Regards, Ally

i need to know where can i download the demo of (secret Santa) i want to know how to create a button for popup after clicking on it

Hi

On this page if you go to the Secret Santa tab you can click Import This Form to import it to your site.

Once you have the form on your site please see Adding the form to the site. When you add the form using any method you can choose whether it is a popup form.

There aren’t any specific button styles for popups built into the plugin, you could use a button shortcode (or button block) from your WordPress theme to trigger the popup. Check if your theme has a way to add buttons (most of them will have this).

Regards, Ally

Is it possible to have a text field refering to a youtube video, and embed the video when viewing the entries?

Hi

You can add the following code to automatically embed YouTube videos contained in a submitted value (if the URL is on its own line). The code can be added to the WP theme functions.php file (or using a plugin).

add_filter('quform_get_value_html_1_3', function ($value, $element) {
    global $wp_embed;

    if ($wp_embed) {
        $value = Quform::escape($element->getValue());
        $value = $wp_embed->autoembed($value);
        $value = nl2br($value);
    }

    return $value;
}, 10, 2);

Replace 1_3 with the field unique ID.

Regards, Ally

About an upload field, if it’s an image it seems to be visible in the entries list, but what about a video, is it playable in the entries list? And if viewing an entry with a video upload, is there a link for playing and one for downloading the video?

Hi

By default only the links to uploaded images or videos are displayed. It would require some custom development to display a video preview with a link to download. This hook can be used to alter the HTML when displaying the value, but you may need a developer to make the modification.

Regards, Ally

If I have a text field which is used for URLs, is it possible that those URLs are clickable when viewing the entries?

Hi

By default the links are not clickable but you can make it so by adding the code below to the WP theme functions.php file (or using a plugin).

add_filter('quform_get_value_html_1_3', 'make_clickable', 20);

Replace 1_3 with the field unique ID.

Regards, Ally

Hi,

I have a html field that contents some information or details about the form. Its possible to click the fied and show the information in a pop up dialog?

Many thanks

Hi

You could use the same technique shown in this guide to show a popup. Instead of having the link as part of the checkbox option label you can put it in an HTML field.

Regards, Ally

Hi,

I am having a form that it has more than one video files.

Is it possible all of those videos, to be merge in one?

Thanks

Hi

There isn’t a feature built into the plugin to do this so it would require custom development. You may need a developer.

Regards, Ally

Hi, do you have any function for display static blocks as form result? eg. of my js: https://pastebin.com/raw/tQpPw8Zm

Hi

The shortcodes will not be parsed in JavaScript, you’d need to do an Ajax request to WP/PHP and call e.g. do_shortcode(‘[nasa_static_block id=”4122”]’); and return that in the response and populate it in the form.

Regards, Ally

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