5X Sales Funnel

If you want buttons or text to appear at a specified time of playback on a video, then you can use Presto Player and a little bit of Javascript code to get an elementor widget to appear at the specified time.

Watch the video above and use the code below.

				
					<script>
document.addEventListener("DOMContentLoaded", function() {
  // Hide the CTA button initially
  var ctaButton = document.getElementById("cta");
  ctaButton.style.display = "none";

  wp.hooks.addAction(
    "presto.playerTimeUpdate",
    "my-plugin-namespace",
    function(player) {
      // Check if the current time is greater than or equal to desired seconds
      if (player.currentTime >= 100 {
        // Show the CTA button
        ctaButton.style.display = "block";
      }
    }
  );
});
</script>