With this changes, you can add this button.
Example Image of the button:
Image of the button pressed
Follow this instructions:
Upload to
/images/bbcb_mg/images/gif this images:
= (rename this to
hide.gif)
= (rename this to
hide1.gif)
In
/languages/lang_xxx/lang_bbcb_mg.php
FIND:
$lang['bbcb_mg_highlight'] = 'Highlight';
AFTER, ADD
$lang['bbcb_mg_hide'] = 'Hide a message';
FIND:
$lang['s_highlight_help'] =
AFTER, ADD
$lang['s_hide_help'] = 'Hide a text, registered users must reply or thanks topic to view the hidden message: [hide]Messaggio Nascosto Citato, rimane invisibile.[/hide]';
In
/includes/bbcb_mg.php
FIND:
'L_BBCB_MG_HIGHLIGHT' => $lang['bbcb_mg_highlight'],
AFTER, ADD
'L_BBCB_MG_HIDE' => $lang['bbcb_mg_hide'],
FIND:
'L_HIGHLIGHT_HELP' => $lang['s_highlight_help'],
AFTER, ADD
'L_HIDE_HELP' => $lang['s_hide_help'],
In
/languages/lang_xxx/bbcb_mg.js
FIND:
s_smiley_creator = 'Smiley Creator: [smiley=1]Text[/smiley] insert a smiley with text';
AFTER, ADD
s_hide_help = 'Hide a text, registered users must reply or thanks topic to view the hidden message: [hide]Messaggio Nascosto Citato, rimane invisibile.[/hide]';
FIND:
AFTER ADD:
FIND:
AFTER ADD
'[hide]Messaggio Nascosto Citato, rimane invisibile.[/hide]',
FIND:
BEFORE ADD:
function BBChide()
{
var txtarea = document.post.message;
if ((clientVer >= 4) && is_ie && is_win)
{
theSelection = document.selection.createRange().text;
if (theSelection != '')
{
document.selection.createRange().text = "[hide]Messaggio Nascosto Citato, rimane invisibile.[/hide]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
//mozWrap(txtarea, "[hide]Messaggio Nascosto Citato, rimane invisibile.[/hide]");
mozInsert(txtarea, "[hide]Messaggio Nascosto Citato, rimane invisibile.[/hide]");
return;
}
if (Hide == 0)
{
ToAdd = "[hide]";
document.post.hide_img.src = bbcb_mg_img_path + "hide1" + bbcb_mg_img_ext;
Hide = 1;
}
else
{
ToAdd = "[/hide]";
document.post.hide_img.src = bbcb_mg_img_path + "hide" + bbcb_mg_img_ext;
Hide = 0;
}
PostWrite(ToAdd);
}
In
/templates/mg_themes/bbcb_mg.tpl
FIND:
<a href="javascript:BBChl()" ><img src="{BBCB_MG_IMG_PATH}highlight{BBCB_MG_IMG_EXT}" name="highlight" onMouseOver="helpline('highlight')" alt="{L_BBCB_MG_HIGHLIGHT}" title="{L_BBCB_MG_HIGHLIGHT}" class="bbimages" /></a>
AFTER ADD:
<a href="javascript:BBChide()"><img src="{BBCB_MG_IMG_PATH}hide{BBCB_MG_IMG_EXT}" name="hide_img" onMouseOver="helpline('hide')" alt="{L_BBCB_MG_HIDE}" title="{L_BBCB_MG_HIDE}" class="bbimages" /></a>
Now, with this changes, we have a new button to use the bbcode hide in the posting page