Hello - I got the online job application to display by adding this to the theme style sheet;
body #gform_wrapper_1 {display:inline !important;}
the downside is it broke the conditional logic for three of the fields on that form so I had to remove conditional logic. It appears to be a jquery conflict between the forms. For jquery on the payment form I used the following in an html block in the form;
<script type="text/javascript">
$("#choice_14_1").click(function() {
if($("#choice_14_1").is(':checked')) {
$('#input_2_9_1').val($('#input_2_2_1').val());
$('#input_2_9_2').val($('#input_2_2_2').val());
$('#input_2_9_3').val($('#input_2_2_3').val());
$('#input_2_9_4').val($('#input_2_2_4').val());
$('#input_2_9_5').val($('#input_2_2_5').val());
}
});
</script>
This code in the functions.php;
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js", false, null);
wp_enqueue_script('jquery');
}
and this in the header.php;
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
Posted 12 years ago on Friday April 19, 2013 |
Permalink