WordPress No sound in header youtube video on Frontpage

the video is controlled with the file /wp-includes/js/wp-custom-header.js for customize them in your theme you need overwrite this file. Copy this file to your assets, from the root of your website write cp wp-includes/js/wp-custom-header.js wp-content/themes/[Your Theme]/assets/js/wp-custom-header.js register the new file in [Your Theme]/functions.php adding this code add_action( ‘wp_enqueue_scripts’, ‘register_header_script’ ); function register_header_script() { wp_deregister_script( ‘wp-custom-header’); … Read more