IMPORTANT UPDATE: Please DOWNLOAD and update the Formidable PRO2PDF to the Latest Version!

Signature field

Home Forums How to Signature field

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1103
    Cezary Ladocha
    Guest

    Just bought your plugin and it’s looking good. I have a couple of questions.

    1. Signature field. How can I style it so the signature is nice and sharp. At the moment I am getting pixelated thick strokes and the signature doesn’t look good. When I sign on the computer most of the signature is cut off.

    2. In your demo example you have an option to put an email address to send the form to. How can I add the same field to my form?

    Thanks
    Cezary

    #1105
    admin
    Keymaster

    1. The signature field plugin is supported by http://www.FormidablePro.com, according to the plugin page;

    Increase the multiplier

    This example allows you to change the multiplier for signature fields. A higher multiplier will create a clearer signature, but it also takes up more memory. The default multiplier is 5.

    add_filter('frm_sig_multiplier', 'change_sig_multiplier', 20, 3);
    function change_sig_multiplier($multiplier, $field, $value){
    if ( $field->id == 171 ) {//Change 171 to the ID of your signature field
    $multiplier = 10;
    }
    return $multiplier;
    }

    2. Add a email field (or text field) to your Formidable Form. Then add the field ID to the TO form field… SETTINGS -> FORM ACTIONS -> EMAIL NOTIFICATION -> TO

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Signature field’ is closed to new replies.