Support Forum
sorry, what are you trying to do?
are you trying to add html to a post? if so, which editor? if tinymce, like the wp editor in visual mode, you have to use the source code button to add html...
if other, please explain further...
Visit Cruise Talk Central and Mr Papa's World
Sorry didn't explain well
I'm trying to put this inside a post :
<a href="ts3server://ts3.zenw.co">Join Teamspeack</a>
This when click should open teamspeak and connect to our ts server.
It work anywhere outside the forum but if i try to put in inside a post this part of the link (ts3server:) get removed and of course the link doesn't work because it doesn't open ts.
ex. <a href=”//ts3.zenw.co”>Join Teamspeack</a>
For post editor i'm using bbcode plugin addon but i also got Ultimate TinyMCE plugin
so as mentioned, neither tinymce or bbcode accept html as input... tinymce is wysiwyg and bbcode is well, bbcode..
so you have to enter html in the appropriate place or it gets modified...
in tinymce, you enter html by clicking on the source code button (this is essentially the same as using the text mode of the wp editor for posts)...
in bbcode, you use bbcode syntax for links... either enter the link text and using the link button or manually enter it in form linkt ext... ref: http://en.wikipedia.org/wiki/BBCode
but even so, think you will have a problem... I am guessing that t3server is not a support protocol... its not standard and probably not supported out of the box... did you say it works in wp posts? are you running some sort of teamspeak plugin? I dont see where wp supports that protocol out of the box...
you can of course use wp hooks and have it be a supported protocol (hence question about wp plugin)...
Visit Cruise Talk Central and Mr Papa's World
whoops.. lol, my bbcode was converted to html....
Visit Cruise Talk Central and Mr Papa's World
i use the editor for bbcode but it still get remove even with the html editor plugin addon.
in wp post anywhere else work so is support by wp.
unlucky for me is just in the post inside the forum (simple press) that doesn't work i'm a little noobie with code u guys have any solutions ?
ex for see that the link work in wp post http://zenw.co/teamspeak/
This is the website: http://zenw.co/
you didnt answer the question about a plugin for teamspeak... or perhaps its the wp theme you use allowing it... btw, the link in that post is a 404 for me, so guessing you need an app of some sort since its not a standard protocol...
none the less, you can add it to the approved protocol list...
edit the spFunctions.php file of your sp theme and add this:
add_filter('sph_allowed_protocols', 'my_forum_protocols'); function my_forum_protocols($protocols) { $protocols[] = 'ts3server'; return $protocols; }
and you can use it then... as always, we strongly recommend you use a child forum theme or create your own before making the changes to keep from losing the updates on upgrades to our themes...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)