Hi. When putting this:
function add_hide_header(){
?>
<script>
jQuery(window).scroll(function(){
if(jQuery(this).scrollTop() > 200) jQuery(‘#header_main’).fadeOut(‘slow’);
if(jQuery(this).scrollTop() < 200) jQuery(‘#header_main’).fadeIn(‘slow’);
});
</script>
<?php
}
add_action(‘wp_footer’, ‘add_hide_header’);
into the Child Functions.php, It crashes the site getting HTTP error 500.
Thanks,
OPVAB