-
Hi all. I just discovered a new problem. When viewing a post linked from Facebook, the player hangs and will not play. For example try posts from Guitar Animal on Facebook. They link to our website for that post, but the videos will not play. I had this issue once before and was given this code to put in my child theme function.php. It’s worked great until now:
//de register script to allow video player to work in facebook in app browser
function wpc_extra_dequeue_unnecessary_scripts() {
wp_dequeue_script( ‘et-core-common’ );
wp_deregister_script( ‘et-core-common’ );
}
add_action( ‘wp_print_scripts’, ‘wpc_extra_dequeue_unnecessary_scripts’ );Any advice appreciated.
Debbie McCormick