Display Search Field By Default - kary4/divituts GitHub Wiki
Please add the following script to the wp-admin>divi>theme options>Integration>Add code to the < head > of your blog option:
<script>
jQuery( document ).ready(function() {
<script>
jQuery( document ).ready(function() {
jQuery('.et_search_form_container').removeClass('et_pb_search_form_hidden').addClass('et_pb_search_visible et_pb_no_animation').css('height','50px');
jQuery('.et_menu_container').removeClass('et_pb_menu_visible').addClass('et_pb_menu_hidden et_pb_no_animation');
});
</script>
});
</script>
Let me know the result.