Forum Replies Created

Viewing 15 posts - 91 through 105 (of 119 total)
  • Author
    Posts
  • in reply to: Active field glowy border #3551
    josef777
    Participant

    put this in your stylesheet and play with the colors

    input:focus{
    border:2px solid #299292!important;
    -webkit-box-shadow:0 0 6px #007eff!important;
    -moz-box-shadow:0 0 5px #007eff;
    box-shadow:0 0 5px #007eff;

    }

    in reply to: past dates validation function need a fix #3202
    josef777
    Participant

    also the time function is not working , it is required even the time is in another hidden group

    // Time HH MM
    add_action('iphorm_pre_display_1', 'mytheme_fix_time', 10, 1);

    function mytheme_fix_time($form)
    {
    // Sets the default time to HH:MM
    $time = $form->getElement('iphorm_1_11');
    $time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
    $time = $form->getElement('iphorm_1_26');
    $time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
    $time = $form->getElement('iphorm_1_34');
    $time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
    $time = $form->getElement('iphorm_1_48');
    $time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
    $time = $form->getElement('iphorm_1_54');
    $time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
    $time = $form->getElement('iphorm_1_57');
    $time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
    }

    add_action('iphorm_element_valid_iphorm_1_11', 'mytheme_validate_time', 10, 3);
    add_action('iphorm_element_valid_iphorm_1_26', 'mytheme_validate_time', 10, 3);
    add_action('iphorm_element_valid_iphorm_1_34', 'mytheme_validate_time', 10, 3);
    add_action('iphorm_element_valid_iphorm_1_48', 'mytheme_validate_time', 10, 3);
    add_action('iphorm_element_valid_iphorm_1_54', 'mytheme_validate_time', 10, 3);
    add_action('iphorm_element_valid_iphorm_1_57', 'mytheme_validate_time', 10, 3);

    function mytheme_validate_time($valid, $value, $element)
    {
    // Validates that the time is not empty
    if ($value['hour'] === '' || $value['minute'] === '') {
    $element->addError('This field is required');
    $valid = false;
    }
    return $valid;
    }

    in reply to: past dates validation function need a fix #3201
    josef777
    Participant

    Sorry , i couldn’t edit the post to fix the code tag

    in reply to: Submit Error across all forms #3150
    josef777
    Participant

    try the smtp option and see if it works , and i am sure one of quform support team will have an answer to your question if this is the only option .

    in reply to: Submit Error across all forms #3147
    josef777
    Participant
    in reply to: Last Upgrade Issue #3146
    josef777
    Participant

    they have just released an update version with the fix

    in reply to: CSS Styles #3032
    josef777
    Participant

    Go to settings > Style and add “form outer wrapper” and add to it the following styles

    padding: 10px;
    width: 215px;
    min-width:215px;

    play with the above numbers till you are happy !

    in reply to: Form Nothing Like Preview #2961
    josef777
    Participant

    Remove the <pre></pre> tags around your form and see if that helps

    Extra spacing in the form

    in reply to: Date inline? #2923
    josef777
    Participant

    I solved this by going to style > add a style then add “Form Elements wrapper” and add this style to it
    white-space: nowrap;

    in reply to: Date picker past dates #2776
    josef777
    Participant

    Perfect
    Thanks Ally

    in reply to: Want my send button to be on right side #2702
    josef777
    Participant

    Go to the form settings > Style and at the bottom where it says “add a style” add “Submit button outer wrapper” and give it this style float:right;

    in reply to: Version 1.4 #2695
    josef777
    Participant

    Fantastic , this is how it should be !

    Many Thanks Ally

    Attachments:
    You must be logged in to view attached files.
    in reply to: Version 1.4 #2616
    josef777
    Participant

    That is Good news , Thanks

    in reply to: Version 1.4 #2607
    josef777
    Participant

    Thanks Ally

    in reply to: Version 1.4 #2580
    josef777
    Participant

    Any news on how to show group Titles in Notifications and Autoreply Emails ?
    This is the only thing left for me to go live with the Forms .

    Thanks

Viewing 15 posts - 91 through 105 (of 119 total)
Be inspired. © 2024 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy