help with a bbcode.

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

help with a bbcode.

Post by neuropass »

hey guys i wanted to add the youtube bbcode in the posts editor icon.

9-4-2010 11-59-36 AM.png

How can i achieve it? :?

Re: help with a bbcode.

Post by Stoker »

Code: Select all

<!-- IF custom_tags.BBCODE_TAG eq 'exact_name_of_the_bbcode_here' --><input type="button" class="buttonz" style="background: url('./images/editor/button_name.png');" name="addbbcode{custom_tags.BBCODE_ID}" value="" onclick="bbstyle({custom_tags.BBCODE_ID})" onmouseover="helpline('hr')" onmouseout="helpline('tip')" /><!-- ENDIF --><!-- END custom_tags -->

Re: help with a bbcode.

Post by neuropass »

thanks Stoker. but how do you retrieve the Bbcode ID?
Last edited by neuropass on 05 Sep 2010, 03:22, edited 1 time in total.

Re: help with a bbcode.

Post by Stoker »

You dont.
Use the code I posted. The only 2 things to change is the bbcode name and the image name.

Re: help with a bbcode.

Post by neuropass »

ok i got it now.. thanks a lot..