Quote:
Originally Posted by vividbreeze
What about making it private so only a certain usergroup can view the video? Is this possible to be placed in a threads private section?
|
I don't have any idea how to make it private as widget

, but you can use the HTML code to any template or page .
creat a custom ( like : tube.php ) page and hide the player from guest by using following code :
[HOW TO - vB4] Create a own vBulletin page
Code:
<vb:if condition="$show['guest']">
<div class="collapse wgo_block" style="text-align: center;">
<h2><span>Hello guest! </span></h2>
<div class="wgo_subblock" style="text-align: center;">
<p>Player is disabled for guests!<br />
To be able to view this video, you must either <a href="register.php{vb:raw session.sessionurl_q}">{vb:rawphrase register}</a> or login. </p>
</div>
</div>
<vb:else />
JW _ Player Code here
</vb:if>