6660 comments found.
Just bought the plugin. works nice except I cant activate the license…. double checked your FAQ but no help. I noticed that themecatcher.net is offline. might be that
regards
Yeah sorry about that, it should be fine now.
Regards, TC
awsome! thanks, i will try to make the changes. if i will have any questions i will ask you
regards
Just wanted to thank you for the truly amazing support and a fantastic plugin. We love using QuForm and have been seriously impressed by your quick response to any questions we had. Many thanks. 
Five stars ! It’s really a great plugin with a lot of helped option. A kid could be use it.
I’m waiting now for the e-commerce option 
Thank you !
hi, I have a problem when I activate your plugin, the template does not work correctly. Explorer 6, 7, 8, 9, how can I do to solve the problem? thanks congratulations for your work
Could you send me a link to the page?
Regards, TC
Hello,
When someone wants to upload some files via Quform, he can uploade them here iphorm/{form_id}/{year}/{month}/. Is it possible to create a folder using the name or email of the person? Or something else to recognize who was the uploader? For example iphorm/{form_id}/{name}/ or iphorm/{form_id}/{email}/ ecc
Regards
Yes, there is a filter hook you can use. There is a guide here: http://www.themecatcher.net/iphorm-form-builder/upload-path.php
Regards, TC
HI, just purchased the plugin, very nice tool indeed. My situation is this, I need to make a page accessible through the front end, kind of like the entries page on backend, where the owner of the site, by using a search box can access the info of the data submited from a given entry, displayed as a list if need be. Would this be hard to achieve??
thank you, great job.
It would be hard to port the backend entries system to the front end. Is it a possibility to give permission to Subscribers to “View Entries” and have them log in? You could do this with a capability management plugin like Members.
Another option is to create a post from the submitted form data, and build up the post content HTML using PHP and your submitted form values. This would then be searchable using the WP built in search.
Regards, TC
Hi
I tested your demo Im happy with it, great tool.
I run a website in 2 languages can I create 2 Forms for eaxch languages ?
In the demo it works only problem is I cant give the send button different names for each language as it looks its a global setting for the forms.
Any Idea how I could fix it ?
Regards
You could create 2 different forms each translated into different language, you can translate each part of the form into one language, it’s not possible to have the same form translated into two languages.
Regards, TC
I just noticed the ‘Date’ option, which works great. But adding a drop down still results in an error, and I need to add other drop downs to this form.
I’m having an issue building forms. When I try to add a drop down menu and save the form, it says “Error saving the form”. I need to add drop downs for ‘Month’, ‘Day’, ‘Year’ so that users can submit their Date of Birth. I’m using this on a custom theme and Quform is the only active plugin. There are no other javascripts running on the site. I’ve also tried disabling all of the script outputs for this plugin. I’ve used this plugin on another site, without any issues. So I’m a little stumped.
It sounds like your theme may have some output on Ajax requests that is interfering with our plugin. I can take a look, 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
hi
if you remmeber my post about edit post from the front end you gived me an example and i tryed to improve it with anonymos function like this:
/* fields populated
*/
add_action('init','populate_field');
function populate_field() {
if (isset($_GET['id'])) {
$my_fields = array("artist_name","single_name","single_writer","tune","process","production","pr",
"lyrics","youtube","communique","single_upload","single_image","music_advice","drums","bas","guitar",
"hakasha","zasbush","programming","kinor","voice","mix","mastering");
foreach ($my_fields as $field) {
add_filter('iphorm_element_value_' . $field , function($value,$field) {
if (isset($_GET['id'])) {
global $cfs;
$var = $cfs->get($field, $_GET['id']);
echo $field;
echo $var;
//$post = wp_get_single_post($_GET['id']);
if (!empty($var)) {
return $var;
}
}
});
}
}
}
add_filter('iphorm_element_value_id', 'mytheme_set_id');
function mytheme_set_id($value)
{
if (isset($_GET['id'])) {
return $_GET['id'];
}
}
/* end field populate */
but i’m getting an error when trying to pass two parameters to the function
function($value,$field) {
do you have an idea how can i pass $field variable so it will be available inside of the anonymous function ?
thanks
You can modify the line 1514 of includes/iPhorm/Element.php to pass in the $key also:
$value = apply_filters('iphorm_element_value_' . $key, $value, $key);you may need to also specify when adding the filter that you are expecting 2 arguments, add these 2 other parameter to your add_filter code.add_filter(..., ..., 10, 2);Bear in mind that if you update the plugin you will lose any changes to the plugin files.
Regards, TC
Can Quform be used to call up wordpress user profiles and allow editing?
If so, can avatar image be uploaded and linked to wp user avatar ?
Not without extensive custom work.
Regards, TC
Hi TC,
For my reg QuForm, there’s a great simple Ajax password strength meter here: http://simplythebest.net/scripts/ajax/ajax_password_strength.html
I’m having trouble integrating it under my QuForm password field.
Can you help me out with this? It would also be a great addition to QuForm features.
Thanks!
Sorry I can’t help with this but I will look into adding this to the plugin in a few months.
Regards, TC
hi
is there a way to validate a user uploaded a file with english letters (i will check this just need a guideness if it can be done) and if not return false and echo error in the form before he submitted ?
thanks
By default any non-alphanumeric charaters are replaced with a dash before being saved. If you wanted to add validation, you would need to manually edit the file includes/iPhorm/Validator/FileUpload.php and add new code in 2 places – one for a single upload field and one for the multi upload field.
For the single field, you can add code on line 164 and check the variable $file['name'] if there is an error, add the following code:
$this->addMessage('Invalid character in filename');
return false;For the multiple upload, add code on line 122, check the variable $file['name'][$key] if there is an error, add the following code:$this->addMessage('Invalid character in filename');
return false;Regards, TC
Is there any way to capture users geolocation and use the value to preselect which country they are from on a country dropdown ?
Say visitor is from Germany, have Germany dynamically preselected from country dropdown list ?
If so, how can I do this ?
Thanks
You’d need to install a geolocation PHP library e.g. http://www.maxmind.com/app/php
Then set up a “Dynamic default value” on your country drop down, then add a filter hook function (it’s in the help) to use the library to determine the user country from IP and return the value.
Regards, TC
Thanks. So under my countries dropdown I checked ‘Dynamic default value’ – do I add the hook/shortcode to the ‘parameter value’ field?
I tried it with the wp Region Detect plugin by adding “ %COUNTRYNAME %” to the parameter value. The plugin works fine and senses country but the dropdown is not responding and not setting the country correctly.
You’d need to add a PHP function to set the value, change the parameter name to country. Then add this function
add_filter('iphorm_element_value_country', 'mytheme_set_country');
function mytheme_set_country($value)
{
// Here you return the name of the detected country from your other plugin
}It will only work of the country names from your other plugin match the dropdown values exactly.
Regards, TC
The popup form trigger is below the main banner on that page.
You have a JavaScript error on the page, looks to be theme related
jQuery("#royalslider-3").royalSlider is not a function once you fix this it should work.
Regards, TC
Hi There I have just purchased the plugin, looks fantastic! I am trying to setup a form so that when a file is uploaded the user can select the recipient from a drop down list/menu. Having no Joy. Can you please advise how this can be done, many thanks!
Add a drop down menu to the form with your recipient list, then in Settings -> Email tick “Conditional recipients” and set up your rules.
Regards, TC
I keep getting this error: “An error occurred submitting the form”
Website: http://www.LEPCalendars.com/artwork
I’ve sent a email to you guys as well. If you can please talk to me on there.
Your server is returning a 404 status code for the page load and when posting the form, this is throwing an error in the Ajax request. It looks like your sever is not set up correctly?
Regards, TC
Ok so I can confirm it’s only the Artwork page that is screwing up. I’ve place the form in other pages and it’s fine. But the moment it’s on the Artwork page I receive a 404 Error. So I’m guessing I’ve called something on the Artwork page only and has broke. Thanks for the help so far
Sorry for the Double Post.
I found that the problem was where I had a Artwork.html file in the root of the site and the page was using Artwork url. Both where conflicting with one another. Not really sure how or why.
Using QuForm as wp reg form..
You have showed us how to check if username already exists. I am using that.
Can you show me how to check if email has already been previously registered ?
Say someone already regd with email me@me.com and another user tries to reg with the same email – raise a validation error.
Thanks
Find the unique ID of your email element and replace iphorm_X_X in the code below.
add_filter('iphorm_element_valid_iphorm_X_X', 'mytheme_check_email', 10, 3);
function mytheme_check_email($valid, $value, $element)
{
if ($valid) {
if (email_exists($value)) {
$element->addError('An account already exists with this email address');
$valid = false;
}
}
return $valid;
}Regards, TC
Thank you
I’m having trouble inserting a form to a post/page.
Getting this error message from the website debugger:
Object [object Window] has no method ‘send_to_editor’
No plugins active except quform Default wordpress theme -Twenty Eleven 1.4
It works for me with Twenty Eleven 1.4. 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