Advertisement
phpface

Remove The Collection Button

Apr 24th, 2023 (edited)
1,620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. add_action( 'init', function(){
  2.  
  3.     global $streamtube;
  4.  
  5.     if( ! $streamtube ){
  6.         return;
  7.     }
  8.  
  9.     remove_action( 'streamtube/single/video/control', array(
  10.         $streamtube->get()->collection,
  11.         'frontend_the_collection_button'
  12.     ) );
  13. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement