Hello! I posted over in the Lay Theme forum a bit ago about some bugs with the plugin (drop down selects not working on the overlay editor). I also found out that the HTML 5 embed button isn't working either. The save button is "Disabled". I'm assuming this was a casualty of the latest WP update (along with the drop down selects not working). Is there an update coming soon with these bug fixes? It seems like Wordpress core updates are slowly chipping away at the plugin functionality...
-
HTML 5 Video Embed Not Working
-
@razledazlerazors I had this issue too. I hacked a fix by adding this to my backend javascript:
// fix video add button
setInterval(function(){
if(jQuery('#html5-video-input-modal').css('display') == 'block') {
jQuery('#html5-video-input-modal').find('.add-video-btn').removeAttr('disabled');
}
}, 1000);It checks if the video modal is showing every second, and if it is showing, removes the 'disabled' attribute from the button. Not ideal, but works for me well.
-
Thanks @James . This is definitely a reasonable bandaid. Got it working and I appreciate the fix! Hopefully they'll release an update with a permanent fix at some point.
-
Perfect! Happy to hear!