[BBCODE] Snotr.com

Echap

New Member
Installation:
Step1:
Goto AdminCP => Custom BBCodes => Manage BBCodes => Add new BBCODE

Step 2:

Title:
Snotr

tag:
snotr

Replacement:
Code:
<iframe src="http://www.snotr.com/embed/{param}" width="640" height="480" frameborder="0"></iframe>

Discription:
Snotr embeded videos

Use {option} : No

Button Image:
snotrcz9.gif



Screenshot
 

Sharif

New Member
@Echap

Thx for this..

I want to know that ... how can i add YouTube.com or videos VDO or other videos??
 

Ivalice21

New Member
If you don't want to use an iframe use this PHP replacement instead:
Code:
<!-- Start Snotr BBCODE --> 
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="400" style="margin:10px 0"> 
<thead> 
    <tr> 
        <td class="tcat" colspan="2" style="text-align:center"> 
            <a href="http://www.snotr.com/video/{param}" title="Click to view this video on Snotr.com" target="_blank">Watch This Video on Snotr.com</a>
        </td> 
    </tr> 
</thead> 
<tr> 
<td> 
<object id="player" type="application/x-shockwave-flash" data="http://www.snotr.com/player.swf?v6&video={param}&embedded=true&autoplay=false&toolbar=false" width="540" height="438">
<param name="movie" value="http://www.snotr.com/player.swf?v6&video={param}&embedded=true&autoplay=false&toolbar=false" />
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="true" />
<p>
<strong>Error:</strong> You have to install <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash player</a> in order to play this video.
</p>
</object>
</td> 
</tr> 
</table> 
<!-- End Snotr BBCODE -->
 
Top