Code

Discussion on Sky Forms Pro

Discussion on Sky Forms Pro

By
Cart 3,529 sales

voky supports this item

Supported

This author's response time can be up to 2 business days.

403 comments found.

Hi Voky,

Thank you very much for your updates.

Could you please let us know from where we may find changelog for the latest update?

Thank you in advance.

Kindest Regards, Htmlstream

Hello!

Yeah, sure. Just updated the changelog.

Regards, Voky

Thanks

No problem ;)

Hi,

Even though I already have your form in one of the themes that I’ve already purchased, if I purchase the form from you, will you give me instructions on how to have the form redirect to another page after a user submits the form? Is it quick and easy to configure the form to redirect? Thank you.

Hello. Yeah, you can send me a message trough the email with a link to your project and i’ll try to help you.

Regards, Voky

Hi,

Thank you for your quick response to my inquiry. After reading your reply, I think that you’re implying that Sky Forms is not easily configured by users to redirect to another page after submitting the form. Most forms that I’ve used in the past have had this basic option of redirecting. I think that you and the purchasers of Sky Forms could benefit if you would add this feature. I like the form but if it’s not easily configurable (by the purchaser) to redirect it’s not really adequate for my needs. Please let me know if you add this feature. Thank you.

Sky Forms Pro has an ajax submit feature, so 99% cases don’t require redirection to another page. And if you need this feature, send me an email. I’m not providing support in the comments section.

Regards, Voky

Hi Great scripts/forms, I love them..

The form with file upload works fine – when user selects a file, when they don’t select a file, this error comes:

Warning: fopen() [function.fopen]: Filename cannot be empty in /home/.../send.php on line 45

Warning: fread() expects parameter 1 to be resource, boolean given in /home/.../send.php on line 47

Hello. Thanks a lot. Please, send me a email with a link to your page and i’ll help you.

Regards, Voky

Thanks for fast reply ;-) Excellent service. I sent the email, please check my form..

Regards Chris

Hello,

Is it possible to close modal window with ESC button on keyboard?

Thanks

Hello. No, unfortunately there is no such funtion.

Regards, Voky

Link to my testing page site: http://parshva.co.in/radav/test/test.html

First 3 text box data is not coming in email. Plus 4 th field is Address (text box) – the first line of address is truncated.

Kindly help me out with this issue. I’m on a deadline. Thanks.

Following is php code: <?php if( isset($_POST[‘name’]) ) { $to = ‘this@is-my-email.com’; // Replace with your email $subject = ‘Conference Registration Form’; // Replace with your subject if you need $message = ‘Name: ’ . $_POST[‘name’] . ”\n” . ‘Designation: ’ . $_POST[‘company’]. ”\n” . ‘Institution / Organisation: ’ . $_POST[‘institution’]. ”\n” . ‘Address: ’ . $_POST[‘comment’]. ”\n\n\n” . ‘Phone: ’ . $_POST[‘phone’]. ”\n” . ‘E-mail: ’ . $_POST[‘email’]. ”\n\n” . ‘Rresenting Paper: ’ . $_POST[‘interested’]. ”\n” . ‘Registration Fees: ’ . $_POST[‘budget’]. ”\n” . ‘DD No: ’ . $_POST[‘ddno’]. ”\n” . ‘DD Date: ’ . $_POST[‘start’]. ”\n” . ‘Bank: ’ . $_POST[‘ddbank’]. ”\n” . ‘Branch: ’ . $_POST[‘ddbranch’]. ”\n” . ‘Online Transfer No: ’ . $_POST[‘rtgsno’]. ”\n” . ‘Bank: ’ . $_POST[‘bankname’]. ”\n” . ‘Date of transfer: ’ . $_POST[‘finish’]. ”\n”; } ?>

// Get a random 32 bit number.
$num = md5(time());
// Define the main headers.
$headers = 'From:' . $_POST['name'] . "\r\n";
$headers .= 'Reply-To:' . $_POST['email'] . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: multipart/mixed; ";
$headers .= "boundary=$num\r\n";
$headers .= "--$num\r\n";
// Define the message section
  $headers .= "Content-Type: text/plain\r\n";
  $headers .= "Content-Transfer-Encoding:8bit\r\n\n";
  $headers .= "$message\r\n";
  $headers .= "--$num\r\n";
if( isset($_FILES'file') )
{
    // Read the file into a variable
    $file = fopen($_FILES'file', 'r');
  $size = $_FILES'file';
  $content = fread($file, $size);
  $encoded_content = chunk_split(base64_encode($content));        
}
// Define the attachment section
$headers .= "Content-Type: ". $_FILES'file' ."; ";
$headers .= 'name="' . $_FILES'file' . '"' . "\r\n";
$headers .= "Content-Transfer-Encoding: base64\r\n";
$headers .= "Content-Disposition: attachment; ";
$headers .= 'filename="' . $_FILES'file' . '"' . "\r\n\n";
$headers .= "$encoded_content\r\n";
$headers .= "-$num-";
// Send email
mail ($to, $subject, '', $headers);

I am not sending any file via email form, nor using capcha image

Hello. To get support please send me an email through the contact form. You can find it on the right side of this page http://codecanyon.net/user/voky

Regards, Voky

Thanks jQuery .toggle works perfectly in sky_forms

Here is the code I used for anyone else that may need this <script> $(document).ready(function(){ $(".togglebutton").click(function(){ $(".sectiontohide").toggle(); }); }); </script>

Just class your toggle button/text/div .togglebutton and then wrap the fields you want to hide/unhide in div and class it .sectiontohide. I actually classed a whole fieldset for my use. Also if you need the section to start hidden just set that in css for the class.

Hi Voky, if the skyformPro form does not have a capture, whats the best way to combat spam? I am receiving spam from a subscription form and adding a capture would be the last option as it will make the subscription process longer and distort the overall design

Thanks

Hello. Yes, you can use a hidden field like this http://stackoverflow.com/questions/3743928/stop-spam-without-captcha

Regards, Voky

I’m looking to load my form with a few of my form fields hidden, but these fields can be unhidden/toggled by clicking a text link or button. Is this possible with sky forms. I know I’ve done things like that before with jQuery .slidetoggle.

Hello. By default there is no such built in feature, so you are totally right about jQuery. You need to use slideToggle() function to active this result.

Regards, Voky

Hello, Very good! :) How to recover the values of checkbox and radio buttons? Their values always give me “on” ..

thank you very much

Best Regards

Hello. Thanks for the purchasing. I think this article might help you http://www.html-form-guide.com/php-form/php-form-checkbox.html

Regards, Voky

Hello,

Thank you for your reply only I’m not a developer, I’m just a graphic designer. I do not understand anything .. now it makes me “array” ... :(

Okey, not a problem. Please, send me an email with a link to your form and i’ll help you to create a php file.

Regards, Voky

Hi, I have Sky Forms in my HTML website. After submitting the form a message appears that says “Your message was successfully sent!”, but instead of this message I would like the form to redirect to another page on my website. How can I make the form redirect? Thank you.

Hello. To get support please send me an email with a link to your website.

Regards, Voky

I purchased the Law Swift template at ThemeForest.net, which uses a form by Sky Forms in the footer of the home page: http://themeforest.net/item/law-swift-lawyer-amp-attorney-business-respo/full_screen_preview/9431146 Please tell me how I can have the form redirect to another page after a user submits the form.

How can I configure the form to redirect to another page after the form information is submitted?

Hello,

Can you help me with this problem? When I make one modal window, which has link that opens another modal window which is a little bit smaller that the first one. So I would like that second modal window overlays first one with sky-form-modal-overlay class but it is not happening. And when I click on .modal-closer button of the second modal window it closes all 2 windows but I need to close them separately. Firstly – 2nd window, after that 1st window. I think it might be a conflict because both forms have .sky-form-modal class

Thanks in advance

Hello. Of course i’ll help you. Just send me a link to you projest via email.

Regards, Voky

Hey,

Can we use your forms to take a payment with Paypal?

Cheers, Ian

Hello.

Yes, I think you can, but you need to create server-side interaction with PayPal by your own. There is no built it feature like this.

Regards, Voky

Hello voky!

Thanks for awesome forms…, what about datetimepicker? It is possible to add into datepicker also some slides for time? Thank you

Hello, thanks! Unfortunately there is no timepicker included. But you can use 2 select elements for the time selection.

Regards, Voky

Hi there,

its possible to reload the captcha picture? Maybe with an onclick-event?

Andi

Hello. No, unfortunately there is no such feature in current version.

Regards, Voky

Hi, I recently purchased Sky Forms Pro and need to know how to add captcha to my forms. Also need assistance in making sure that any choice in a pulldown (such as countries etc.) is posted to my email.

thanks,

presale q: can be set a minimum of 3 days interval in date picker between start date and end date ? Ex: if start date is 23 dec, users can’t select 24 and 25 dec for end date.

thank you so much

Hello, yeah it can be achieved, but this feature requires a small custom javascript code. If you are not strong in javascript, you can send me an email after purchasing and i’ll help you.

Regards, Voky

Hi, On Firefox last version ( mac os ), i’ve got a 1px border bug arround the select arrows. I can see it sometimes under or on the right side. The screenshot is from your demo site. Thanks for this great code !

Captura de pantalla 2014 12 12 a las 13 28 52

Hello. Thanks a lot for showing me this. I just uploaded an update. Hope soon it will be approved.

Regards, Voky

Thanks a lot for the update, working perfectly now !

And one more time thank you for a bug-report!

Regards, Voky

Does this forms have input with button aside left like search nav?

Hello. It can be easily created with help of grid system.

Regards, Voky

Great Support!!!!!! I have rate this 5 stars!

Thanks!

Hi I need your help I have purchesed your product its very nice but I dont know how to send the info in php

<?php $ToEmail = 'emailx@gmail.com’;

$EmailSubject = ‘Formulario Contacto Grupo SSC’; $mailheader = “From: ”.$_POST[“email”].”\r\n”; $mailheader .= “Reply-To: ”.$_POST[“email”].”\r\n”; $mailheader .= “Content-type: text/html; charset=iso-8859-1\r\n”;

$MESSAGE_BODY = “Nombre: ”.$_POST[“fname”].””; $MESSAGE_BODY = “Apellido: ”.$_POST[“lname”].””; $MESSAGE_BODY .= “Email: ”.$_POST[“email”].””;

$MESSAGE_BODY .= “Asunto: ”.$_POST[“cphone”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“companyname”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“puesto”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“teloficina”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“extension”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“web”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“redsocial”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“domicilio”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“colonia”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“ciudad”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“cp”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“list”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“checkbox1”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“checkbox-inline”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“checkbox-inline2”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“checkbox-toggle”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“stars-rating”].””;

$MESSAGE_BODY .= ”: ”.$_POST[“comentario”].””;

mail($ToEmail, $EmailSubject, $MESSAGE_BODY, $mailheader) or die (“Failure”); ?>

Great Support!!!!!!

Thanks!

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