Advertisement
krzysztof_et

Remove download button from VIDEO

Feb 21st, 2024
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2. add_action( 'wp_head' function() { ?>
  3.   <script type="text/javascript">
  4.     document.addEventListener('DOMContentLoaded', function() {
  5.         var videoPlayers = document.querySelectorAll('.wp-video-shortcode');
  6.         videoPlayers.forEach(function(player) {
  7.             player.setAttribute('controlsList', 'nodownload');
  8.         });
  9.     });
  10.   </script>
  11.   <style type="text/css">
  12.     video::-internal-media-controls-download-button {
  13.       display: none !important;
  14.     }
  15.   </style>
  16. <?php } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement