VSL Pages - If you have a vsl page, you can delay a button to get qualified appointments/purchases. You would want your viewers/leads to see the video atleast to a point right?
For Vimeo Hosted Videos:
Copy paste this below script in Code Element in Synamate under the Wistia video.
This script only works for Vimeo Video.
<script>
document.addEventListener('DOMContentLoaded', function() {
function getVimeoID(iframe) {
var src = iframe.getAttribute('src');
var match = src.match(/video\/(\d+)/);
return match ? match[1] : null;
}
var iframes = document.querySelectorAll('iframe');
var targetVideoID = 'PASTE-VIDEO-ID-HERE'; //Enter the video ID
iframes.forEach(function(iframe) {
var videoID = getVimeoID(iframe);
if (videoID === targetVideoID) {
var player = new Vimeo.Player(iframe);
var button = document.getElementById('PASTE-BUTTON-ID-HERE-REMOVE-#');
button.style.display = 'none';
player.on('timeupdate', function(data) {
if (data.seconds >= 600) { // Change time here
button.style.display = 'block';
}
});
}
});
});
</script>