51 comments found.
Pre-sale Question here: On your “working reservation form” i saw a pre-populated details… is that possible to get details from other html page?
Example:
Shop page: input Item details and quantity
Reservation form page: get item details and quantity from “shop page”
I love your form and I would like to use it. I hope this is possible, let me know. thanks!
Hello, Elflaire. How are you? I was about to checkout and I decided to read the comments and found out this isn’t a WordPress plugin from an old comment. Can you inform me if it would be difficult to implement this to my WP site? I have no knowledge of jQuery.
Also, what’s the difference between this plugin and the Smart Forms plugin? Is it only styling?
Smart forms has more features than Golden Forms Pro also regarding WordPress you may need to create a simple plugin to enque all your scripts just to manage the scripts that way it becomes easy for you to handle the forms in WordPress its pretty straight forward
Hi…I sent you a message to your evanto account.
OK
Let me get back to you
Ok, thanks.
Hello, I have noticed that starting from PHP5.6 the contact form no longer functions. Can you understand that? Greeting Reiner
OK Let me check, can you send me an email via the profile?
What do you mean with profile?
Theres a form just send me an email i will give you feedback
In your demos, if I leave the ‘file upload’ field blank, it gives me an error that I need to upload a file.
Can the file upload field be an optional field?
Yes you can remove the validation for the file upload inside the .js file and the processing php file
If the user uploads a file, I want to validate that it is the right file type. But if they DON’T upload a file, it should not give an error. How can I do that?
JQUERY – CLIENT SIDE
Using JQuery you can check whether a fale is attached (assuming your file input has ID #myfile)
jQuery("#myfile").change(function(){
// PUT YOUR VALIDATION CODE HERE
});
PHP – SERVER SIDE
You can run the validation by checking whether a file is attached on the server side like this (assuming your file input has a name attribute name=”uploads”)
if (!empty($_FILES['uploads']['name'])) {
// PUT YOUR VALIDATION CODE HERE
}
Hello. Any news?
Hi, nice form!!! Please provide solution for Modal popup, with validation and error/success handling on the same modal. Regards.
Will do please
Thx for reply, so… how to use golden forms in modal popup, with validation and error/success handling on the same modal window???. Please help, its an urgency. Please provide solution to my email address- codeofthefreedom@gmail.com. Regards.
OK Let me fix one for you ASAP
Thx for reply. Please implement modal with validations for-ajax-php-forms/sendmail-version/RESERVATION form!!! Thank you.
To have form reservation like in SMART FORMS- button with modal form. Wish good luck and will waiting for update reservation form soooooonest.
Will send you this week almost done
Hi, still waiting for reservation form with modal. Regards.
Sorry been off work am now back and working on your inquiry
Hi, not yet?
Sorry i noticed your gmail rejects emails with attachmnts that include javascript
Download the modal form from this LINK
Thank you. But i asked fro RESERVATION form to have it in modal, Is possible?
Let me put it inside a modal for you
Please, help with this. Thank You!!!
Working on it
Working on it
Thank You for GREAT SUPPORT!!!!
Hello I’m using the forms for a mobile app using HTML5, CSS and JavaScript. My question is how can I get the fill out forms to come to my email when the user submit form? I had try this section by putting my email but did not work. Here is the example. <form action=”mailto:myemail@.com” method=”post” id=”gform-pro”>
Hi eduvaz33, No no no you go to the working forms inside the php folder and fill out the email address in the settings file – please note that this is elaborated in the documentation
Hi there, I’m hesitating between Smart Forms and Golden Forms Pro. Can you tell me the differnces
HI Mahers
The only two differences is that Smart Forms has more plugins included than Golden and ofcourse the form UI design
Hi,
Please answer these Presale Questions before we finalise.
We want to create a Online Registration Page.
1. Do you have <Admin Page< (To check EACH submitted forms for print & download) if not, Can you customize Admin for us? And customization charges?
(Example Admin page: http://universal-form-builder.softdiscover.com/standalone/admin
username : admin
password : admin
)
2. Option to upload files. (JPG…. to incude photograph for print in the form)
3. Fields & Radio Buttons to calcualte & submit the results in database, the number of total points achieved, visible to Admin area only.
e.g:.
– Siblings (5 points)
– 5 km (10 points)
– 15 km (6 points)
...etc.
4. < Sequence Form Number:< Can it Generate auto Sequence Numerical Code (FN.:001) for each user/form.
5. USER is able to PRINT the Submitted form in A4 paper after submission. ( if not, Can you customize for us? )
6. Admin is able to *Search, View, Print & Download (Individual Listing), as well all listing in CSV & PDF Format from Admin pannel
7. User IP cannot generate more submission once Submitted.
8. Form Should able to print in A4 Size paper with photograph from Admin page
Please Answer pointwise would be helpful. thanks
Hello, I am very interested in your php plugin. Compatible with the template here? http://themeforest.net/item/travelo-travel-tour-booking-html5-template/8346649 How integrated your plugin, on the contact page here? http://www.soaptheme.net/html/travelo/pages-contactus2.html Thanks.
contact form
If you are using PHP hosting it should work
Have a quick question, could you please help me display the client IP address on the email your form generates and also have it post it on the csv file? If it can also put a date/time stamp that would be great. I know I have to place $_SERVER[‘REMOTE_ADDR’] somewhere but I dont know enough of PHP.
As always, thanks for your anticipated awesome support.
For anybody that reads this, please know ELFLAIRE has always given great support. 5 stars service.
Here are the few solutions
METHOD 1:
$ipaddress = $_SERVER['REMOTE_ADDR'];
Displaying the IP
echo 'Your IP address is ' . $ipaddress . '<br />';
METHOD 2:
function get_client_ip_env() {
$ipaddress = '';
if (getenv('HTTP_CLIENT_IP'))
$ipaddress = getenv('HTTP_CLIENT_IP');
else if(getenv('HTTP_X_FORWARDED_FOR'))
$ipaddress = getenv('HTTP_X_FORWARDED_FOR');
else if(getenv('HTTP_X_FORWARDED'))
$ipaddress = getenv('HTTP_X_FORWARDED');
else if(getenv('HTTP_FORWARDED_FOR'))
$ipaddress = getenv('HTTP_FORWARDED_FOR');
else if(getenv('HTTP_FORWARDED'))
$ipaddress = getenv('HTTP_FORWARDED');
else if(getenv('REMOTE_ADDR'))
$ipaddress = getenv('REMOTE_ADDR');
else
$ipaddress = 'UNKNOWN';
return $ipaddress;
}
Displaying the IP
echo 'Your IP address is ' . get_client_ip_env() . '<br />';
METHOD 3:
function get_client_ip_server() {
$ipaddress = '';
if ($_SERVER['HTTP_CLIENT_IP'])
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
else if($_SERVER['HTTP_X_FORWARDED_FOR'])
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
else if($_SERVER['HTTP_X_FORWARDED'])
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
else if($_SERVER['HTTP_FORWARDED_FOR'])
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
else if($_SERVER['HTTP_FORWARDED'])
$ipaddress = $_SERVER['HTTP_FORWARDED'];
else if($_SERVER['REMOTE_ADDR'])
$ipaddress = $_SERVER['REMOTE_ADDR'];
else
$ipaddress = 'UNKNOWN';
return $ipaddress;
}
Displaying the IP
echo 'Your IP address is ' . get_client_ip_server() . '<br />';
Wow amazing stuff. Thanks! One last question, which file do I place them in? smart process? settings? or smart message?
Hello
You place the method / function code inside smart process and then the display code inside smart message
smartprocess.php
Inside this file you will find a list of variables like this below
$emailaddress = strip_tags(trim($_POST["emailaddress"]));
Assuming you are using method 1 – add this line below tho that list
$ipaddress = $_SERVER['REMOTE_ADDR'];
smartmessage.php
Inside this file you will find also a list of field variables posted like this below
<p><span>Email:</span> '.$emailaddress.'</p>
Then add the IP variable above like this below
<p><span>IP Address:</span> '.$ipaddress.'</p>
Thanks
Hi, when I print the forms in Safari or IE it doesn’t resize responsive. So the forms don’t always fit the page, in Chrome however the forms resize responsive on a printed page. Do I need to add/change some css?
Hi Lennard,
Which Print are you talking about – the form data print or the form its self – the print functionality is supported by flash so you may need to look for the data tables print flash file and change text sizes
Hi, thank you for your reply. I mean the form itself, there is a difference in print-view (see in safari/IE and chrome).
Hello! I am considering buying this but I have a quick question. I use a form builder called Formidable for Wordpress – it works great, but I would ideally have your style associated with the final product. Is there a way to use your css/etc to give those forms your look? Thanks!
Hi mmw562,
We can help apply the styling to your existing forms but i will need to look at the markup
Thanks
Hello elflaire, its possible to integrate “post author” sending?
Hello die84albe
What do you mean post author – are you referring to wordpress? The forms are not a wordpress plugin though!
HI Fotoruma,
They both differ design Golden Forms Pro is gradient oriented while Smart Forms is minimalist and flat in terms of design
Golden Forms Pro is themed with 2 themes (dark / light )
Smart Forms is themed with 3 flat themes (dark / elegent / flat)
Smart Forms contains more extra ui elements such as chaining selects, cyrrency formating cloning elements, multi-steps, modal popups, maps, pricing grids, ui combobox, ui auto-complete, E.T.C all these are not available in Golden Forms Pro
Smart Forms also contains more features in terms of PHP processing scripts
Thanks
OK, so I’m going to buy the smart form
Thanks
How is submitted the form? you know when he was sent a email?
I bought this and love it but is there a Rich Text Area widget in the package I may have missed? Or a recommended plugin? Tnx!
pre-sale question: is it possible to implement a “golden forms pro” contact form on a index.html page instead of an index.php page (with client-side validation through jQuery?)
Hello SilverOne,
Yes it is very much possible – both server side and client side validation will work.
Regards
Can I email you for a private question related to this contact form? What’s your email address?
Any chance you could add repeating fields and sections?
Hi Dnavarrojr,
What do you mean by repeating fields and sections?
Let me know
Regards