SOLVED WITH THIS IN FUNCTIONS.PHP
<?php
add_action( ‘wp_footer’, ‘my_custom_popup_scripts’, 500 );
function my_custom_popup_scripts() { ?>
<script type=”text/javascript”>
(function ($, document, undefined) {
jQuery(‘#popmake-1793’)
.on(‘popmakeBeforeOpen’, function () {
var $iframe = jQuery(‘iframe’, jQuery(this)),
src = $iframe.prop(‘src’);
$iframe.prop(‘src’, ”).prop(‘src’, src + ‘&autoplay=1’);
});
}(jQuery, document))
</script><?php
}
and even this – nothing hapenns
<?php
add_action( ‘wp_footer’, ‘my_custom_popup_scripts’, 500 );
function my_custom_popup_scripts() { ?>
<script type=”text/javascript”>
(function ($, document, undefined) {
jQuery(‘#popmake-vimeo’)
.on(‘popmakeBeforeOpen’, function () {
var $iframe = jQuery(‘iframe’, jQuery(this)),
src = $iframe.prop(‘src’);
$iframe.prop(‘src’, ”).prop(‘src’, src + ‘/?autoplay=1’);
});
}(jQuery, document))
</script><?php
}