DEMO:
REQUIREMENTS:
1.You must have custom bbcode page by Stoker found in this site. Custom BBCodes Page
2.If you have bbcodebox light mod installed it will also help, i have my images for the bbcodebox light mod, in a editor directory inside the images folder!
ps. fix path to images depending on where you have them installed.
3.Images should be named according to the bbcode, follow instructions in the bbcodebox light topic!
on to edits!
open boardbbcodes.php
Find:
- Code: Select all
'BBCODE_MATCH' => $row['bbcode_match'],
Add after:
- Code: Select all
'BBCODE_ICON' => ($row['bbcode_tag']) ? '<img src="' . $phpbb_root_path . 'images/editor/' . $row['bbcode_tag'] . '.png" height="16" width="16" align="absmiddle" />' : '<img src="' . $phpbb_root_path . 'images/editor/no_image.png'. '" height="16" width="16" align="absmiddle" />',
now open prosilver/template/boardbbcodes_body.html
Find:
- Code: Select all
<th class="info" style="width:150px;">{L_BBCODE_DISPLAY}</th>
Add after:
- Code: Select all
<th class="table1" style="text-align:center;">{L_BBCODE_ICON}</th>
Find:
- Code: Select all
<td style="text-align:center;"><!-- IF bbcodes.S_BBCODE_DISPLAY -->{L_YES}<!-- ELSE -->{L_NO}<!-- ENDIF --></td>
Add after:
- Code: Select all
<td style="text-align:center;">{bbcodes.BBCODE_ICON}</td>
open language/en/common.php
Find:
- Code: Select all
'BBCODES_COUNT' => '%d Custom BBCodes'
Add after:
- Code: Select all
'BBCODE_ICON' => 'Icon',
Welcome to PhpBB3 BBCodes. Click here to register











