6660 comments found.
Just wondering if you make this so that when form submitted and approved by admin, data can display on a single page on front end with fields and filter search function.
You can create a post from the form data, using this guide. You can make it a Page and make it a Draft (so the admin can publish it to approve it) by changing the $post array to this:
$post = array(
'post_title' => $title,
'post_content' => $content,
'post_type' => 'page',
'post_status' => 'draft'
);
Regards, TC
hello,
this might be a really stupid question, but I have to ask so I can decide. Let’s say I want to build a real estate classified ads portal, where any user can post listings anywhere in the world. And let’s say that the theme I have does not have this functionality and is a social network theme that is made for the BuddyPress and bbPress plugins, or perhaps any other theme for any other purpose. Will I be able to create a form where these locations, sub-locations, e.g., Country > State/Province > City/Municipality > Borough > Area can be listed in drop-down or whatever form for the user to choose from? In essence, some sort of conditional logic being applied to each preceding choice.
or should I be looking for another category of plugins here in CodeCanyon?
thanks for your patience.
man.o.man
Hi
It is technically possible but it will require custom development. I wouldn’t use conditional logic for this but use custom JavaScript to detect when the Country menu is changed which will then send an Ajax request to get all States/Provinces in that country (from a PHP script or some other source) and then populate them in that menu and show it, then set up the same process on State to City and City to Borough etc. You will need a data source to do it, perhaps there is an API or database out there you can use. If this doesn’t make sense you will probably need a developer.
I don’t know if another plugin exists that already does this.
Regards, TC
- Perhaps I should have explained that the site admin will populate the location database of countries, states/provinces, cities, etc., and also with whatever else might be needed, such as brands of cars, models, year, etc. So does this affect your reply in some way, as in can I now use your plugin to achieve what I want?
You will still need a developer to write the code to populate the other dropdown menus based on the user’s previous choices.
Just to be clear this would only be for changing the dropdown options within the form. If you are looking for the plugin to actually search the classified ads within an area and display the results Quform can’t do this.
Regards, TC
can i save submitted job application to PDF?
There is nothing built in to convert the submitted data to PDF. So it would require significant custom development. It would be cheaper to use another plugin with PDF support.
Regards, TC
Good day, The plugin is showing error on my website, at first I thought the theme was the one causing the error and I consulted the the developers and they said its not the error caused by the theme, its the booking plugin im using, see link: http://mamokgethi.com/bookings/
I believe this might be an automatic excerpt. Can you enter a paragraph of text above the form shortcode in the page content and see if the code goes away?
Regards, TC
If I buy storm theme QFORM is included? Thanx
Yes it is included and you can use the purchase code for Storm to activate the Quform plugin. It’s also possible to use the plugin another site if don’t plan on using it for your Storm site.
Regards, TC
is there a way to autocomplete addresses being entered in a text field meant for address with some suggestions as the text is being typed..
Hi
Nothing built in for this. You would need a web developer to implement an autocomplete script such as jQuery UI autocomplete and link it to an address data source.
Regards, TC
Hi,
one pre purchased questions.
You suggest this for multicolumn checkboxes:
What to do is set the checkbox options layout to “Inline”, go the Advanced tab of the checkbox settings and add a new style for “Option wrapper” and set a fixed width, e.g.
What happen wit order of items? If they inline order is horizontally not vertically?
If they are inline the order is horizontal, so the first row in the column will be filled then the next ones will be in the second row. You can change the order of the Options in the field settings to move individual options around.
Regards, TC
Thanks for fast answer.
So, with inline I will get:
1 2 3 4 5 6
It is possible to get
1 3 5 2 4 6
and on smaller resolution that became:
1 4 2 5 3 6
Thanks
Hi,
I dont know why was removed my line break, but here are again what I need:
6 items in 3 columns in order
135
246
and on smaller resolution order must be:
14
25
36
om mobile
1
2
3
4
5
6
Thanks Milena
It’s possible using CSS media queries to position the options differently depending on the resolutions. You will need a CSS developer though.
Regards, TC
Hi Author,
I put jquery calculation to HTML block to get a Price from what they choose on the Dropdown Menu
<div id="form-total" />
<script>
jQuery(document).ready(function ($) {
var calculate = function () {
var total = 0.00;
// Check the chosen option of a select menu
var val1 = $('.iphorm_4_5').val(); if (val1 == 'Paket New Client') {
total += 400000.00;
} else if (val1 == 'Paket Starter A') {
total += 750000.00;
} else if (val1 == 'Paket Starter B') {
total += 1000000.00;
} else if (val1 == 'Paket Starter C') {
total += 1500000.00;
} else if (val1 == 'Paket Silver A') {
total += 240000.00;
} else if (val1 == 'Paket Silver B') {
total += 380000.00;
} else if (val1 == 'Paket Silver C') {
total += 520000.00;
} else if (val1 == 'Paket Silver D') {
total += 660000.00;
} else if (val1 == 'Paket Gold A') {
total += 450000.00;
} else if (val1 == 'Paket Gold B') {
total += 750000.00;
} else if (val1 == 'Paket Gold C') {
total += 1050000.00;
} else if (val1 == 'Paket Gold D') {
total += 1350000.00;
}
// Display the result to the user
$('#form-total').text('Total: Rp. ' + total);
// Set the value of the hidden field
$('input[name=iphorm_4_10]').val('Rp. ' + total); };
// Calculate on page load
calculate();
// Recalculate when these select menus are changed
$('.iphorm_4_5').change(calculate);
});
</script>
The question is, how do I make the total that shown in the Hidden Field with currency format (a dot breaker every 3 decimal)? e.g: Rp 400.000
Love to hear from you soon,
Thanks
Hi
Replace this part:
.val('Rp. ' + total);
With this:
.val('Rp. ' + total.toString().replace(/\B(?=(\d{3})+(?!\d))/g, "."));
Regards, TC
Works like a charm! Thanks for the source link too
Best Author!
Hi there. I have it set up so that the order is emailed to me when a user submits it to me. That was easy to figure out, but how do I set it up so that the person who submits the order also gets the email order sent to them? I am wanting them to have this for their records. They obviously have to fill out a field with their email, but how can I set it up so that this field gets an auto cc of the order they filled out? Hope there is a way! Thanks
It needs a bit of code, here is the guide.
Regards, TC
Hi,
Can your form integrate easily with Paypal so we can take payment?
Many thanks, Ian
I have 1 form, but 2 buttons (images) to send people to this single form.
Question is as follows:
People who never registered, they will need to fill out the entire form. and people who have already registered, I just want them to use the same form, but onlly one section of the form, how do I redirect people to show only those fields using the same form?
Let me know.
Thanks
What’s the status?
Add a Dropdown Menu to the form and give it a label “Logged in”, make it have 2 options: “No” and “Yes” (without quotes), go the Advanced tab of this field’s settings an add a new style for “Outer wrapper” and enter this CSS:
display: none;
This field will be hidden from the user and will track whether they are logged in or not. Now wrap a Group around all the fields that you want to hide for logged in users, and in the Optional tab of the settings tick “Enable conditional logic” and set the rule to {Show} this group if {Logged in} {is} {No}.
Then add this code to your theme functions.php file, it will set the value of the Logged in field to Yes if they are logged in:
function my_set_logged_in_field($form)
{
if (is_user_logged_in()) {
$form->setValue('iphorm_1_1', 'Yes');
}
}
add_action('iphorm_pre_display_1', 'my_set_logged_in_field');
Replace iphorm_1_1 with the unique ID of the Logged in Dropdown Menu and replace the number 1 on the last line with the form ID.
Regards, TC
Major issue. When I add my form for instance [iphorm id=”10” name=”You Have Been Invited”] and the above code was generated from dropdown in the page, but my page immediately becomes empty. If I remove the form then my pages displays all the content, but the form.
What’s the solution?
Nevermind. Found the solution. FYI, make sure you always paste the code in the page, not widgets or some sort of page builder, otherwise it will not work.
Happy you have figured it out. Regards, TC
What don;t you answer all my questionS? I have multiple questions in here? See another thread below. please answer immediately
We have different people in different timezones who are able to answer different types of question.
Regards, TC
Hi Is it possible to have a show AND hide on the conditionals so:
5 items in a checkbox field. (a,b,c,d,e)
A number of dropdown fields for each combination of possible checkbox choices.
User chooses (a, c, d)
Only show the dropdown field (A+C+D)
Other form plugins fail because they still show (A+C) So I need to show and hide in one field. Is this possible?
Hi,
Yes, Quform has the option to Show or Hide an element, for All OR Any of the conditions you have set.
So, if I understand you correctly, then you would set the element to Show if All on the conditions of “Checkbox” values are A, B and C.
That will show the element when user checks the 3 boxes not just 1 or 2.
Regards, TC
Hi there. I just bought the quform plugin. I created the contact form. When I publish the form this appears: [raw], on the top and on the bottom of the form.. Do you have a solution for this?
Dear Author,
I have spent hours looking into this problem.
I am not receiving email notifications when user fills out form.
I have tried everything on the list: http://support.themecatcher.net/quform-wordpress/troubleshooting/common-problems/not-receiving-notification-emailPlease assist. I have another license on the same server and it works well.
Anything?
Hi,
Perhaps there may be a conflicting plugin?
Otherwise, Could you please send over administrator login details and your admin URL to the contact form on my profile page.
If you’d prefer not to send us the main account login, you can 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 block some part of the form information from the user.
If for example an email is needed from the user. In this situation the email would be taken from the logged-in user
Then the user would see his email on the screen but not be able to change it.
Is this possible ?
Add a Single Line Text field to the form in the Settings -> Optional tab at the Default Value option click Insert Variable… and choose “User email”. To make it read-only add an HTML field to the form (from the “More” tab) and enter this content:
<script>
jQuery(document).ready(function ($) {
$('.iphorm_1_1').attr('readonly', true);
});
</script>
Replace iphorm_1_1 with the unique ID of the Single Line Text field that you want to make read-only. The code assumes it will only be read-only if they are logged in, otherwise they are free to enter an email address.
Regards, TC
Thanks a lot. Will check it.
Is this possible?.
I need a form to be created where users can create text to be used on our website.
When the user have created the text and clicked send. Then the text should be in queue until an admin have accepted/published the text.
The text the user have send should be able to be viewed by the user and all other users before being published.
When the text have been published by an admin. Then the text should be able to be printed to any custom post type.
Last thing : I use my-cred for a point system. When a text is being published by an admin. Does it count/function as a normal post creation, like from inside word-press?
Thanks.
There is nothing built in for a queue system. However you can use this guide to create a post from the form data (including custom post types). So you could set the post status to draft by adding this to the $post array:
'post_status' => 'draft'
Then the once the post is reviewed you can publish it just like a normal WP post.
Regards, TC
Hello
Is it possible to display “IP Location” instead of “IP address” ?
Thanks
Hi
Nothing built in to the plugin to convert the IP address to a location. If you install another plugin that has an IP to Location function (or write your own) you can edit the file iphorm-form-builder\admin\includes\entry.php and on line 52 pass the $entry->ip variable into this function and display the location instead.
Regards, TC
Thanks
Hi I was just wondering whether you can add prices to selections eg. Radio buttons 1 room 2 rooms 3 rooms and it calculates the price like a quote type thing?
We have a guide here for calculations but it requires some coding.
Regards, TC
ok thanks 
How do we encrypt your forms? I have some credit card information on my forms and want to encrypt thsi data, how do we go about this?