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.

Hi how do I make single line text (input fields) longer? Also how do I make two fields on a single row?

To do this for all text fields, in the form builder go to Settings -> Style and at the bottom add a new style “Text input elements” and enter your CSS width in the box.

width: 250px;
Regards, TC

Can whatever they choose (via the questions) show as a preview at the end? For example they choose a s colour, material, Jumper and then then they have the end product in a preview….

It’s possible to do this with custom JavaScript, you’d create JavaScript event bindings on the fields and when the user interacts with them you then update your preview. There is no part of the plugin that can help with this.

Regards, TC

Can I publish this form results in a wordpress page? Thank you in advandce.

You can create a post/page using this guide. To add more fields and HTML you would further build up the $content variable before inserting.

Regards, TC

Very happy with the process to create a long form. But I’m having a bit of trouble creating groups. When I put form items inside a group and save the settings, the form looks different in the page. When I come back to the form in Quform, the group borders are moved.

Is this something I can fix? If not, can I get a refund? I definitely need to be able to put items in groups for display reasons (set apart sections of the form) and to display items horizontally. Thanks for any help.

I’m using WordPress 3.4.1 with the WooThemes Canvas theme. See the form at http://livingwisdomschool.org/wordpress/application-for-admission/.

I haven’t seen any problems like this with the group system before. Could you please send over administrator login details, your admin URL to the contact form on my profile page.

To keep your website secure, it is best if you could 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

Is it possible to have a tickbox field showing in the admin area, but hidden on the form? We would like a field called “Approved” that admins can tick when entries are reviewed – but this would not appear on the actual form.

No, it’s not possible to edit the submitted data in the admin section, the only option is to mark an entry as read/unread.

Regards, TC

I just purchased, installed and entered license key but got error”invalid license”

can you help?

Could you please send over administrator login details, your admin URL and your purchase code to the contact form on my profile page.

To keep your blog secure, it is best if you could 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

How I can publish this forms in a page in wordpress? Thank you!

I replied to your other comment on this.

Regards, TC

If this is working I will purchase right now. Thank you in advandce.

Can I use this plugin for comments in wordpress?

It can probably be done, however it would require some custom PHP code, we don’t have a guide for this at the moment.

Regards, TC

ok :-)

thank for Quick replay..

yes everything is set. Other plugin that I translate show up the Hebrew translation

Where I can change (required) to (??? ????) in the php or js file what is the name of the file?

In the form builder Settings -> Style -> Required indicator text

Regards, TC

hello thank you for this excellent plugin I am trying to translate to Hebrew using mo po files iphorm-he_IL.mo iphorm-he_IL.po and it’s not working I steal get (required) in English and not in my translation ??

david

In your wp-config.php file have you set the language?

define('WP_LANG', 'he_IL');
Our plugin will use the language set in there.

Regards, TC

hi

you missed my latest updated post i wrote there:

about my last post ignore that i had a maintenese plugin activated and that caused the problems.

i still have problem with non english chars in uploaded file name and i spent a lot of time trying to crack that including your guide to edit the file validator fileupload.php. i inserted this line 127 and 173:

if(!preg_match("/^([a-zA-Z0-9._ -]+)(\.*)$/", $pathInfo['filename'])) {
                        $this->addMessage($this->_getFileUploadError(IPHORM_UPLOAD_ERR_TYPE));
                        return false;
                        }

the FORM IS SUBMITTED but THE FILE IS NOT UPLOADED , why there is no errormessage echo to the screen and hold the form from submitted ?

please help with issue.

I have replied to your other comment.

Regards, TC

Hello, I still with the same problem. I’ve sent you the admin data 2 days ago, i need your help. I only bought this plugin to upload .LRF files. Thanks!

Hello, I still with the same problem. I’ve sent you the admin data 2 days ago, i need your help. I only bought this plugin to upload .LRF files.

Thanks!

I sent you an email.

Regards, TC

Hi Please confirm if this can be done using your plugin before I buy it. I want to do a simple tracking system that let user input required field and when they submit it it will be posted in a table. 1 row for every user who submits their data and 1 column for each field. An admin can edit the data submitted by user so he/she can approve or disapproved it. Once action has been taken it will be transferred to another table together with the other approved data. This is like a lot of posts created in wordpress that can be edited and can be filtered by their type or category and has a search option at the top. I hope your getting the picture. I am willing to buy the necessary number of plugin and license required to build this system. This can all be done in the frontend of the site using a account login for the system. Thanks. Will wait for your soonest response. Thank you very much.

It’s not possible to have a frontend system like this (without extensive customization). The admin section has a table with the submitted data, one per row, and they can delete entries but not edit them. There is no code included to move data to another table.

It’s possible to create a post with the submitted form data included inside it. You could then edit/search and move category. I don’t know if this is a good solution for you, but we have a guide for doing this.

Regards, TC

How to make Paragpah text section bigger?? And I wan t to make other sections also bigger you can look here:

http://robotus.net/iletisim/

And one question more: Waht if I want to use at my other site??

1. You will need to style the Paragraph Text field with CSS . You can do this inside the form builder, got to the element settings, Advanced tab and add a new style “Textarea input” and enter your CSS e.g.

width: 300px;
height: 200px;

2. You will need to purchase another license to use the plugin on another site.

Regards, TC

Is there a way to have a date range field? I need a start date and end date but I didn’t want to make two field for it…

Not really. You can only specify the start/end year within the form builder. You can customize the datepicker options though and you can probably make it display only a range of dates, we don’t have a specific guide for this but you will find similar code on the date validation guide.

Regards, TC

Hello, great piece of kit… well done. The only thing I’m unable to stop happening is when a form is submitted all the field data gets wiped out.

Ajax is working as the form reloads without reloading the whole page during the validation part which means there must be a function that clears the post data, once the form is submitted successfully?

The reason I need the data to stay on screen, is to allow the site visitor to print off a completed form and mention this on the successful submission text.

Thanks again. Regards Mark

You will need to edit the plugin files to achieve this. In the file iphorm-form-builder/js/jquery.iphorm.js go to line 303 and remove this code:

$form.resetForm();
Note: if you update the plugin this change will be lost.

Regards, TC

hi

about my last post ignore that i had a maintenese plugin activated and that caused the problems.

about file name with no english letters i inserted this in line 164 in the file FileUpload.php:
if(!preg_match('/^[\w-]+$/', $file['name'])) {
                        $this->addMessage('english letters only.');
                        return false;
                    }

no mather wich file and wich language , no message , the form is submitted and all the upload fields are empty.

There is a bug in the JavaScript making it not show the error. In the file js/jquery.iphorm.js find these lines:

uploadError = true;
$('.iphorm-upload-error', $form).text(file.name + ' - ' + response.data[0]);
Replace them with
swfUploadError = true;
$('.iphorm-upload-error', $form).text(file.name + ' - ' + response.data[0]).show();
I’ve made this fix to the next version so you will not lose the change on update. Also the regex is failing because of the dot before the extension in file names. 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