Yes, but it would take a bit of custom code.
When a live stream is loaded, the wpYouTubeLiveStarted
event is fired; you can use this javascript code to create custom front-end features on your site by adding an event listener:
window.addEventListener('wpYouTubeLiveStarted', function() {
/* your code here */
console.log('stream started');
/* your code here */
});
You’d have to include the [youtube_live fallback_behavior="no_message"]
shortcode in a widget or footer so it would be running on every page.
-
This reply was modified 4 years, 7 months ago by macbookandrew. Reason: tweak code formatting