Forum Replies Created
- AuthorPosts
josef777
ParticipantYou are trying to Import Entries and not forms , to export forms click the button “Export Forms”
See imageAttachments:
You must be logged in to view attached files.josef777
Participantjosef777
ParticipantPablo . contact me here http://vienna-taxis.com/contact-us/
that i know your email addressjosef777
ParticipantGo to your form > settings > style and look at the Global CSS Styles and what is inside the “Paragraph text elements ” and change it there .
josef777
ParticipantQuform 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/josef777
ParticipantLook at menu-item in that page your Contact menu link has .menu-item-578
josef777
ParticipantWhen using line-height declare height as well for best results !
line-height:xxx;
height:xxx;josef777
ParticipantTo speed your website start here
https://developers.google.com/speed/pagespeed/insights/there is a lot to do !
josef777
Participantjosef777
ParticipantAs 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 !
josef777
Participantjosef777
ParticipantThanks Ally i did not know that as well !
josef777
Participantadd this to your CSS file
.iphorm-upload-queue-filename {
color: #000;
}
josef777
ParticipantIt#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
josef777
ParticipantGo 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 .- AuthorPosts