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.

How do I get a popup form to work with this button?

size="big" link= "http://mydigitaltimeline.com/admin/?page_id=443"]Order/button

Here is the popup code I need to insert, but when I click on the button it doesnt work. Help!

this to the text or HTML that will trigger the popup[/iphorm_popup]

Help, I just bought this plugin and it won’t work on my website. I added the shortcode and this is what I get http://reginawebsolutions.fatcow.com/ollharrisonville/parish-registration-form/.

The form shortcode is wrapped in pre tags. Remove them.

Regards, TC

Perfect! Thanks:)

In regard to… “ThemeCatcher REPLIED To receive support you will need to post a comment from the account that purchased the item.”

While I understand this comment and your position on this, in terms of how the CodeCanyon page displays the comments / remarks – it is OPEN to everyone, signed in or not and while I understand you may not respond to a specific question or comment UNTIL SOMEONE HAS SIGNED UP / PURCHASED your product, once it is answered, EVERYONE can see it regardless if they have bought your product or not.

While I certainly appreciate your support and your product (and I did purchase it) – someone who hasn’t purchased it now has the solution to the questioned asked. – I don’t follow the logic here.

FX Designer

The question has been answered a lot, so that shows how useful it is having answers to questions on this comment system. My colleague must have missed that you did not purchase the product. We cannot provide support until we have verified that you have purchased, I’m sure that’s an obvious stance.

Regards, TC

ThemeCatcher,

I just purchased your plugin….WOW!

Q. Is it possible to get the form used in your video demos?
  • Contact Form
  • Our Survey Form
  • Request quote Form *Appointment Request Form
  • Any other cool forms you might have :-)

Suggestion, you should include these forms in the download, these forms are a good starting point for new users.

Great Plugin! Robert

Here is the link to download a quote form we used to have on the examples page. It’s quite basic, hence it was removed to wait for a better example. TC

ThemeCatcher

Thanks again for the form. I did not use your Quote form, but I learned from all your examples. I built a Quote form from looking at your examples, and added a number of form elements. So easy to use…. here’s my first form.

URL : http://siliconpost.com/help/contacts/request-a-quote/

One question on advanced usage you can help with. In the for noted above, in the Contact Information area, I have “State” and “Country” drop-downs. I would like a condition, such that when the “Country” is selected the “State” drop-down will be populated according to Country selection. Is this possible. If yes, can you point me in the right direction?

Thanks in advance, Robert

To do this you’d need to create a “State” dropdown menu for each of the countries. Then in the settings for each state dropdown, Optional tab, tick “Enable conditional logic” and set it to Show if <your country dropdown> is <relevant country>.

Regards, TC

I figured out how to send out auto-replys. Actually, For some reason now my form is not going through. It was working perfect earlier. I sent you a message via your profile with my site info. Thanks!

A+ ..... very useful plug-in and great support!!!

thank you w

STILL NEED HELP …

fxdesigner1951 SAYS Hopefully this is not a repeated question. (BTW a very nice plugin thank you)

I am wanting to increase the DISPLAYED input (or for that matter any field box) field width from its default setting. Is there an ability to do this and please advise as to which file needs to be changed.

THX – it is much appreciated. Regards, FX Designer 1 DAY AGO

To change the width of all elements in your form go to Settings tab – Style tab – Global styling – Add a style. You can set the width for all Text input elements, Paragraph Text elements or Dropdown Menu elements by clicking on the relevant button in this section. Now add custom CSS into the CSS field for these elements. To change the width add this CSS :

width: 200px;

If you need to change individual elements you can go to the element Settings and then click the Advanced tab.

TC

Dude, this plugin saved my life!!!!!!!! much thanks for that!

I do have a question though, maybe i am overlooking something. Is there a way to automatically send an email back to the person that filled out and submitted the form with the data that they entered? So they have a confirmation and record of the info they supplied in case it is incorrect.

Thanks!

You can set up the autoreply, in Settings -> Email -> Send autoreply email

Regards, TC

“It would be nice! And add multistep form” 1+

Hello there, I have a question in order to buy this great plugin.

In the popup version, the redir page will open in the same popup? We would like that this happen since we will add a maxmind phone verification and we love the popup look.

The redirect will change the entire page, not the popup contents.

Regards, TC

It would be nice! And add multistep form :-)

Hopefully this is not a repeated question. (BTW a very nice plugin thank you)

I am wanting to increase the DISPLAYED input (or for that matter any field box) field width from its default setting. Is there an ability to do this and please advise as to which file needs to be changed.

THXs – it is much appreciated.

Regards, FX Designer

To receive support you will need to post a comment from the account that purchased the item.

Is this possible to use WYSIWYG editor like tinymce for text area?

If you wanted to replace all textareas you can edit the file includes/elements/textarea.php, find the line containing the textarea tag and replace it with

<?php wp_editor($element->getValue(), $name); ?>
If you wanted to just do this for a specific element, find the element unique ID, and use the code:
<?php if ($name == 'iphorm_X_X'): ?>
        <?php wp_editor($element->getValue(), $name); ?>
    <?php else : ?>
        ...existing textarea code...
    <?php endif; ?>
Replace iphorm_X_X with your unique element ID. Bear in mind that if you update the plugin you will lose this change. We’ll make this an option in the future.

Regards, TC

Hello,

I have two basic Quforms. After submission, the first form redirects the user to another Page. This page is a Template that contains the second form.

Question 1) How Can I get a variable sent by the first form, but without using a function in functions.php, just the simple POST value. I have tried some ways but without success. Code Example:

 
<?php
/*
Template Name: [Details]
*/
global $TTP, $TTPDesign, $ThemeDesign, $userdata; get_currentuserinfo();

get_header();

$var_try1=isset($_POST['iphorm_9_1']);
$var_try2=iphorm_get_form(9,'test_1')->getValue('iphorm_9_1');

echo "Try1 = ".$var_try1."<br />";
echo "Try2 = ".$var_try2;
//Second Form...
if (function_exists('iphorm')) echo iphorm(10);

get_footer(); 

?>

Question 2) Is it possible to use a variable sent by the first form as a “default value” in the second form? If so, could you give me an example?

Thanks so much – nice job guys! :)

You can’t do this without a PHP function, when the form redirects it becomes a new “GET” request so you lose all the POST data. One way of doing this would be to create a post success hook function to save the form values to a PHP session and then access this data inside your next page template. In your functions.php

add_action('iphorm_post_process_9', 'mytheme_save_form_data', 10, 1);

function mytheme_save_form_data($form)
{
    session_start();
    $_SESSION['iphorm_9'] = $form->getValues();
}
In your page template, at the top of the page add <?php session_start(); ?>You can then access the form data using
<?php echo $_SESSION['iphorm_9']['iphorm_X_X']; ?>
where iphorm_X_X is the unique element ID. To set the default value of the next form you, will need to tick “Dynamic default value” in the Optional settings for the fields in the 2nd form, and enter a Paramter name for each field, then you can add a 2nd paramter to your iphorm() call to set the parameter from the session data, e.g.
if (function_exists('iphorm')) echo iphorm(10, 'my_paramter_1=' . $_SESSION['iphorm_9']['iphorm_9_1'] . '&my_parameter2=' . $_SESSION['iphorm_9']['iphorm_9_2']);
Good luck, TC

hi,

does this plugin enable me to create two-part booking forms? first: a short form (roomtype, arrival, departure date) second: a continuing form showing selected roomtype, arrival and departure date plus additional fields like name, email, adress, ... and submit button

No, it would need to be two separate forms so the submitted data from both forms would not be connected.

Regards, TC

HI,

I love the plugin, and would search the comments for an answer to this question if there were a way to search the comments (suggestion for Envato).

When I insert a form as a popup, it gives me the error message “The requested content cannot be loaded”.

I assume there’s a pretty simple explanation and fix?

Thanks in advance.

The only time I’ve seen this error before is if Fancybox is loaded twice on the page, can you try disabling the Fancybox output from our plugin by going to Quform -> Settings -> Disable script output.

Regards, TC

Thanks for the reply.

I tried disabling the output in the manner you prescribed, but it didn’t seem to help.

Any other suggestions?

Here is the page to which I am referring if it helps (it’s the link with the anchor text “Click Here” at the very bottom of the page): http://paleolivingmag.com/about-paleo-living-magazine/

Hmm, Fancybox is still being loaded on the page twice. Not sure how this is possible if that option is ticked. There is another option below this, set it up to be:

Disable Fancybox output [ticked]

Enable Fancybox [unticked]

Regards, TC

Update: i got the button fixed, i had a plugin conflict. Is there a way to change the buttons to pictures?

Add the following style into custom.css (wp-content/plugins/iphorm-form-builder/css/custom.css). I added the form ID selector (2) so it only effects this form.
/*add styles to your button here.
NB; Fixed width and height must be used if you require to adjust the size. The overlaying flash button will inherit these only. No padding please! */
.iphorm-outer-2 .iphorm-swfupload-browse {
    border: none 0;
    height: 250px;
    width: 160px;
}

Then add the images for each upload button using the unique element ID like the following. Repeat the code below for each button, changing the image url and the ID number (16 in this example). You will need 16, 17, 18, 80 (?) from what I can see from your form.

.iphorm-outer-2 iphorm_2_16-input-outer-wrap .iphorm-swfupload-browse {
    background: url(http://gcology.com/wrightmt/wp-content/uploads/2012/06/waistup.png) no-repeat left top;
}

let me know how it goes…

TC

Great plugin. By far the best form creation plugin for wordpress! I have two questions though.

Do you have a way to style the browse button in a file upload to an image? If so can you paste a sample code snippet for me to use.

Also, the browse button is brokern on my form can you look at and see if you have any sugestions to fix it.

To see it you have to go here

http://gcology.com/wrightmt/contact/ and then click the drop down apply for modeling/acting > Agree to the terms and condtions >then you will be able to see the broken buttons. If possible i was wondering if you can make each button a picture. Thank you.

We just purchased the plugin using our biz account. however I’m having a problem. When I click to submit the form it’s not going to the confirmation page I setup to go to. It just keeps processing the form and never goes anywhere. HELP PLEASE …!!!!

To receive support you will need to post a comment from the account that purchased the item.

Thanks for great plugin!

When activating conditional logic, the form breaks and do not show. The javascript console report this error: “Uncaught SyntaxError: Unexpected token < “

Your theme is passing the shortcode content through the wpautop filter, you can try wrapping the form shortcode in raw tags. If that doesn’t work your theme may have code such as

remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop' , 99 );
add_filter( 'the_content', 'shortcode_unautop', 100 );
A good place to start looking is the theme’s functions.php file, please remove this code.

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