Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hayatbiralem/f001ebbf0c25137b3dee431559ce6e0a to your computer and use it in GitHub Desktop.
Save hayatbiralem/f001ebbf0c25137b3dee431559ce6e0a to your computer and use it in GitHub Desktop.
Autoplay Ultimate Addons Video when Popup Maker Modal Opened
(function ($) {
$(document).on('pumBeforeOpen', function (e) {
console.log('pumBeforeOpen', e);
$(e.target).find('.ultv-video__play').parent().each(function () {
if ($(this).data('default-html')) {
$(this).html($(this).data('default-html'));
} else {
$(this).data('default-html', $(this).html());
}
});
});
$(document).on('pumAfterOpen', function (e) {
console.log('pumAfterOpen', e);
$(e.target).find('.ultv-video__play').each(function () {
$(this).trigger('click');
});
});
})(jQuery);
@hayatbiralem
Copy link
Author

You can insert this code snipped right into the page with raw html component or some theme option's javascript area or you can make a plugin for it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment