Forum Replies Created
- AuthorPosts
josef777
Participantdid you try this ?
josef777
Participantfor the background try
.builder-module-sidebar .widget {
background: #333333!important;
}
josef777
Participanttry this
.iphorm-required {
color: #ffffff!important;
}
josef777
ParticipantLook at this post https://support.themecatcher.net/forums/topic/dropdown-menu-elemets-css
josef777
ParticipantThanks Ally
June 1, 2013 at 11:35 pm in reply to: Quform displays show [raw] and [/raw] command at the begin and end off a page? #4625josef777
Participantjosef777
Participantjosef777
ParticipantIf you are trying to customize the Email Content , all you have to do is Select from the dropdown on the right (when you click Customize email content) and add any Variable you wish and it will add it correctly , do not add manually .
your content should look like this
<b>Name:</b> {Name|1}
<br/>
<b>Email:</b> {Email|2}
<br/>
<b>Message:</b>
{Message|3}
<br/>
<br/>
--<br/>
<i>Submitted via the contact form on RobBessette.com</i>May 23, 2013 at 11:05 pm in reply to: How to remove the [raw] and display problem with reCAPTCHA? #4530josef777
Participantjosef777
Participantwe need a price field with conditional logic , that is all what is missing in my forms .
josef777
ParticipantAlly Promised me it will be added in the next release just like the date field 🙂
josef777
ParticipantThis is a working code for your functions.php file .
after you make the changes to time.php put the following in your theme functions.php
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'));}
add_action('iphorm_element_valid_iphorm_1_11', '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;
}I had this code from Ally back then and it works perfect . just don’t forget to change the form id and the field id to your ids
josef777
Participantjosef777
Participantok , i see what you mean , here all is working fine and the conditional logic and all options are present ,
it must be something local in your website that prevents this from happening ,i am sure one of the developers will see this and help you with it !
josef777
Participantbecause there are no dropdowns , radio buttons or checkboxes in your form .
it will show something if one of the above is present in your form .- AuthorPosts