Forum Replies Created
- AuthorPosts
josef777
ParticipantWhy using a second form if you can use a hidden group and it shows when option 1 is selected ? , it is much easier
Just make a group , put all the questions in it and make it appear with conditional logic .!josef777
ParticipantTry the following code :
<script type="text/javascript">function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
}document.onkeypress = stopRKey;
</script>
josef777
ParticipantGo to your form > settings > Email > and look at “Conditional recipients” and add new rule
josef777
ParticipantJanuary 25, 2014 at 10:45 am in reply to: Checkboxes and multi select options display without the tickbox #8457josef777
ParticipantGo to this CSS file http://www.myq8home.com/wp-content/themes/wpestate/style.css
and remove
input[type=”radio”] {
display:none;
}Line 3045
josef777
ParticipantThanks Ally , works great !
josef777
Participantjosef777
Participantchange the .iphorm-submit-wrap-1 to .iphorm-submit-wrap-3
josef777
ParticipantIf everything was ok before then look at No. 4 , i suspect it is your log file
josef777
Participantyou have 2 CSS files that affecting this button , just put the following code in your custom CSS file and you will not feel it is changing .
.iphorm-submit-wrap button:hover {
background: #4c4c4c;
}
josef777
Participantput this in your custom CSS change the color or opacity as you like
#fancybox-overlay {
opacity: 0.7;
background-color: #000;
}
josef777
ParticipantGo to your form > settings > Style , in that page change the Label placement
josef777
ParticipantCan you try it without the button shortcode just to see if the shortcode causing this , put a simple link with text like
- This reply was modified 11 years, 3 months ago by
josef777.
- This reply was modified 11 years, 3 months ago by
josef777.
- This reply was modified 11 years, 3 months ago by
josef777.
- This reply was modified 11 years, 3 months ago by
josef777.
Attachments:
You must be logged in to view attached files.josef777
ParticipantTry it without the extra lines in javascript , it should work !
[custom_button text="Ik heb interesse" link="#form-3"size="medium" bg_color="#FF5C00" text_color="#FFFFFF"]
[iphorm_popup id="3" ][/iphorm_popup]
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('a[href="#form-3"]').click(function () {
$('.iphorm-fancybox-link-3').click();
return false;
});
});
</script>
- This reply was modified 11 years, 3 months ago by
- AuthorPosts