Forum Replies Created

Viewing 15 posts - 1 through 15 (of 119 total)
  • Author
    Posts
  • in reply to: Problem of importing a form #12694
    josef777
    Participant

    You are trying to Import Entries and not forms , to export forms click the button “Export Forms”
    See image

    Attachments:
    You must be logged in to view attached files.
    in reply to: Raw problem #12614
    josef777
    Participant
    in reply to: Purchasable Quform themes? #12583
    josef777
    Participant

    Pablo . contact me here http://vienna-taxis.com/contact-us/
    that i know your email address

    in reply to: Ajax paragraph field #12520
    josef777
    Participant

    Go to your form > settings > style and look at the Global CSS Styles and what is inside the “Paragraph text elements ” and change it there .

    in reply to: Purchasable Quform themes? #12489
    josef777
    Participant

    Quform is sold with few themes already , this is if you don’t like any of the themes you can make your own and it is easy .
    You can try the themes included here https://www.quform.com/examples
    + unfiform is also included in Quform http://uniformjs.com/ und it is mainly to include styled radio buttons , checkboxes and select menus (3 themes )

    You can buy a CSS if it’s build for Quform but i don’t think anyone is selling !

    Few weeks ago i was playing with themes and made 10 themes for quform and uniform with different styles
    if you like any of them , let me know and i will send it to you , FREE 🙂
    http://vienna-taxis.com/sample-page/

    in reply to: Link Menu pop up #12482
    josef777
    Participant

    Look at menu-item in that page your Contact menu link has .menu-item-578

    in reply to: Different Rendering of Forms #12327
    josef777
    Participant

    When using line-height declare height as well for best results !

    line-height:xxx;
    height:xxx;

    in reply to: performance the form #12301
    josef777
    Participant

    To speed your website start here
    https://developers.google.com/speed/pagespeed/insights/

    there is a lot to do !

    in reply to: Required Field on Time #12295
    josef777
    Participant
    in reply to: add fields by click #12252
    josef777
    Participant

    As far as i know it is not possible to duplicate a group of fields but you can add as many groups as you like in the form and then add check boxes to show or hide a group when clicked by using the conditional logic .

    it is the same but more work !

    in reply to: add fields by click #12243
    josef777
    Participant
    in reply to: Customize all notification emails #12182
    josef777
    Participant

    Thanks Ally i did not know that as well !

    in reply to: How to change entry field text color AFTER entry? #12174
    josef777
    Participant

    add this to your CSS file

    .iphorm-upload-queue-filename {
    color: #000;
    }

    in reply to: Customize all notification emails #12171
    josef777
    Participant

    It#S for more than one

    This is the code for one form

    function mytheme_customize_email($mailer, $form, $attachments)
    {
    // Get the new email content from the file email-content.php
    ob_start();
    include dirname(__FILE__) . '/email-content.php';
    $content = ob_get_clean();

    // Set the email content
    $mailer->MsgHTML($content);

    // You must return the $mailer object
    return $mailer;
    }
    add_action('iphorm_pre_send_notification_email_1', 'mytheme_customize_email', 10, 3);

    this is for 2 forms


    function mytheme_customize_email($mailer, $form, $attachments)
    {
    // Get the new email content from the file email-content.php
    ob_start();
    include dirname(__FILE__) . '/email-content.php';
    $content = ob_get_clean();

    // Set the email content
    $mailer->MsgHTML($content);

    // You must return the $mailer object
    return $mailer;
    }
    add_action('iphorm_pre_send_notification_email_1', 'mytheme_customize_email', 10, 3);
    add_action('iphorm_pre_send_notification_email_2', 'mytheme_customize_email', 10, 3);

    See the difference ? and if you have more forms just copy add another line like the last one with the form ID

    in reply to: How to change entry field text color AFTER entry? #12170
    josef777
    Participant

    Go to your form > settings > style and at the bottom of the page add a style and click “text input elements”

    and add color: #000; in the CSS box .

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