BBCode Hide Message With An Image Buttom »  Show posts from    to     

Icy Phoenix


Old Customizations - BBCode Hide Message With An Image Buttom



Zuker [ Thu 05 Apr, 2007 16:45 ]
Post subject: BBCode Hide Message With An Image Buttom
This is a simple method to have a bbcode Hide message with an image (with the message that says that you must post a reply to view the hidden message).

This image will be shown to explain that there is a hidden message: Example

Rename this image as hide_yes.gif and upload to: /images/bbcb_mg/images/

And this image will be shown when users are able to see the hidden message: Example

Rename this image as hide_no.gif and upload to: /images/bbcb_mg/images/

Example Images of this hack: When the message is hidden / When the message is not hidden

In /includes/bbcode.php

FIND:
Code: [Hide] [Select]
// generate html
$html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';
if(!$show)
{
return array(
'valid' => true,
'html' => $html . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',
'allow_nested' => false,
);
}
else
{
return array(
'valid' => true,
'start' => $html,
'end' => '</div></blockquote>'
);
}


REPLACE WITH

Code: [Hide] [Select]
// generate html
$html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';
if(!$show)
{
return array(
'valid' => true,
'html' => $html . '<center><img src="images/bbcb_mg/images/hide_yes.gif" border="0"/></center><br />' . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',
'allow_nested' => false,
);
}
else
{
return array(
'valid' => true,
'start' => $$html . '<center><img src="images/bbcb_mg/images/hide_no.gif" border="0"/></center><br />',
'end' => '</div></blockquote>'
);
}


With this changes, we have an image with the text of BBcode Hide explain.

But, the BBcode Hide doesn't have a bbcode button on posting.php (on reply).
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:
hide7aq = (rename this to hide.gif)
hide13lp = (rename this to hide1.gif)

In /languages/lang_xxx/lang_bbcb_mg.php

FIND:
Code: [Hide] [Select]
$lang['bbcb_mg_highlight'] = 'Highlight';


AFTER, ADD

Code: [Hide] [Select]
$lang['bbcb_mg_hide'] = 'Hide a message';


FIND:
Code: [Hide] [Select]
$lang['s_highlight_help'] =


AFTER, ADD

Code: [Hide] [Select]
$lang['s_hide_help'] = 'Hide a text, registered users must reply or thanks topic to view the hidden message: [hide]Hidden Message[/hide]';


In /includes/bbcb_mg.php

FIND:
Code: [Hide] [Select]
'L_BBCB_MG_HIGHLIGHT' => $lang['bbcb_mg_highlight'],


AFTER, ADD

Code: [Hide] [Select]
'L_BBCB_MG_HIDE' => $lang['bbcb_mg_hide'],


FIND:
Code: [Hide] [Select]
'L_HIGHLIGHT_HELP' => $lang['s_highlight_help'],


AFTER, ADD

Code: [Hide] [Select]
'L_HIDE_HELP' => $lang['s_hide_help'],


In /languages/lang_xxx/bbcb_mg.js

FIND:
Code: [Hide] [Select]
s_smiley_creator = 'Smiley Creator: [smiley=1]Text[/smiley] insert a smiley with text';


AFTER, ADD

Code: [Hide] [Select]
s_hide_help = 'Hide a text, registered users must reply or thanks topic to view the hidden message: [hide]Hidden Message[/hide]';


FIND:

Code: [Hide] [Select]
var Td = 0;


AFTER ADD:

Code: [Hide] [Select]
var Hide = 0;


FIND:

Code: [Hide] [Select]
'[highlight=]'


AFTER ADD

Code: [Hide] [Select]
'[hide]','[/hide]',


FIND:

Code: [Hide] [Select]
function BBCbold()


BEFORE ADD:

Code: [Hide] [Select]
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]" + theSelection + "[/hide]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
//mozWrap(txtarea, "[hide]", "[/hide]");
mozInsert(txtarea, "[hide]", "[/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:

Code: [Hide] [Select]
<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:
Code: [Hide] [Select]
<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


KugeLSichA [ Sun 08 Apr, 2007 22:34 ]
Post subject: Re: BBCode Hide message with an image buttom
thank you zuker for this


diegomak [ Wed 11 Apr, 2007 00:24 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Thanks this work perfect


test [ Fri 22 Jun, 2007 18:13 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
hey thank you for that ..really helps worked!!
but.. the combination between thanks button don't work if i press thanks the post is hidded is their a possibillity/solution for that?!?!


Zuker [ Fri 22 Jun, 2007 20:38 ]
Post subject: Re: BBCode Hide message with an image buttom
there it's no combination in ip for that at the moment


chusrubi2 [ Mon 09 Jul, 2007 21:30 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Puting this on bbcode.php
Quote:
FIND:
Code: [Download] [Hide] [Select]
Code: [Download] [Show]
// generate html
$html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';
if(!$show)
{
return array(
'valid' => true,
'html' => $html . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',
'allow_nested' => false,
);
}
else
{
return array(
'valid' => true,
'start' => $html,
'end' => '</div></blockquote>'
);
}


REPLACE WITH

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
// generate html
$html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';
if(!$show)
{
return array(
'valid' => true,
'html' => $html . '<center><img src="images/bbcb_mg/images/hide_yes.gif" border="0"/></center><br />' . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',
'allow_nested' => false,
);
}
else
{
return array(
'valid' => true,
'start' => $html . '<center><img src="images/bbcb_mg/images/hide_no.gif" border="0"/></center><br />',
'end' => '</div></blockquote>'
);
}

I have this error:
Code: [Hide] [Select]
Parse error: syntax error, unexpected T_VARIABLE, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/www/downloading.mygamesonline.org/includes/bbcode.php on line 3550

what can i do?
Zuker if you are spanish answer me in spanish plz.


Zuker [ Mon 09 Jul, 2007 22:47 ]
Post subject: Re: BBCode Hide message with an image buttom
u are making some edit wrogn

attach me your file so i can check it


chusrubi2 [ Thu 26 Jul, 2007 16:22 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
I have added the file adjunt in .rar. Modify it plz


Zuker [ Thu 26 Jul, 2007 22:34 ]
Post subject: Re: BBCode Hide message with an image buttom
But you are gaving me the clean file
Try to do it and if u can't, attach the modded file


leonidfg [ Fri 17 Aug, 2007 06:19 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Thanks Zuker!!! I did it.

Thanks men.


Sergini [ Sun 19 Aug, 2007 21:50 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
I have a problem. I had one modification. When I push the button not view the message Original (Quoted Hidden Message, which is still hidden.). There aren't message

But, if I write a word, I select the word with the mouse and I push the eye,...:

wordundefined

Im spanish, sorry my bad english ^^

IN SPANISH...

Yo tengo un problema. He hecho una modificación. Cuando yo hago click en el botón no veo el mensaje original (....). No me sale nada, en blanco [Así quería yo ^^].... hasta aquí todo bien.

Pero, si yo escribo una palabara, Yo la selecciono con el ratón y pulso en el botón del ojo, me sale...

palabraundefined

Nosé si me explico. Si primero pongo hide y luego escribo bien


leonidfg [ Fri 24 Aug, 2007 09:01 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Hi again... in all this HIDE button stuff I have another question.

There's a way to the hide messages may be visible only to the registered users without the need of posting a message? An example may be the Thanks button that allow to see the hide messages.

But I didn't find a post with this Thanks button MOD.

Anyone here know how to do it.

Bye...!


Mighty Gorgon [ Fri 24 Aug, 2007 11:14 ]
Post subject: Re: BBCode Hide message with an image buttom
I think it has already been posted somewhere here... try to search...


Zuker [ Fri 24 Aug, 2007 15:09 ]
Post subject: Re: BBCode Hide message with an image buttom
leonidfg wrote: [View Post]
Hi again... in all this HIDE button stuff I have another question.

There's a way to the hide messages may be visible only to the registered users without the need of posting a message? An example may be the Thanks button that allow to see the hide messages.

But I didn't find a post with this Thanks button MOD.

Anyone here know how to do it.

Bye...!


on bbcode.php & viewtopic.php

replace

Quote:
if($userdata['session_logged_in'])
{
$sql = "SELECT p.poster_id, p.topic_id
FROM " . POSTS_TABLE . " p
WHERE p.topic_id = $topic_id
AND p.poster_id = " . $userdata['user_id'];
$resultat = $db->sql_query($sql);
$show = $db->sql_numrows($resultat) ? true : false;
if ( ($userdata['user_level'] == ADMIN) || ($userdata['user_level'] == MOD))
{
$show = true;
}
}


with

Code: [Hide] [Select]
if ( ($userdata['session_logged_in'] )
{
$show = true;
}


test it


robin cracker [ Sun 26 Aug, 2007 08:29 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
hello can configure to allow groups that not post to view the content ?


Zuker [ Sun 26 Aug, 2007 18:45 ]
Post subject: Re: BBCode Hide message with an image buttom
you have to do it manually and play with groups id


robin cracker [ Mon 27 Aug, 2007 09:18 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
excuseme in what file edit the groups permision to hide mod? my php and mysql knowledge is very bad


Zuker [ Mon 27 Aug, 2007 15:19 ]
Post subject: Re: BBCode Hide message with an image buttom
robin cracker wrote: [View Post]
excuseme in what file edit the groups permision to hide mod? my php and mysql knowledge is very bad


when i arrive home i'll try to play quickly with it.


Zuker [ Mon 27 Aug, 2007 17:36 ]
Post subject: Re: BBCode Hide message with an image buttom
mmm, i don't think if it's ok. i have no idea of how to make it

try in bbcode.php and viewtopic.php

replace

Code: [Hide] [Select]
if($userdata['session_logged_in'])
{
$sql = "SELECT *
FROM " . THANKS_TABLE . "
WHERE topic_id = $topic_id
AND user_id = " . $userdata['user_id'];
$resultat = $db->sql_query($sql);
$show = $db->sql_numrows($resultat) ? true : false;
if ( ($userdata['user_level'] == ADMIN) || ($userdata['user_level'] == MOD))
{
$show = true;
}
}


with

Code: [Hide] [Select]
if($userdata['session_logged_in'])
{
$sql = "SELECT user_id FROM " . USER_GROUP_TABLE . " WHERE group_id = x";
$result = $db->sql_query($sql);
if ( $userdata['user_id'] == $result )
{
$show = true;
}
if ( ($userdata['user_level'] == ADMIN) || ($userdata['user_level'] == MOD))
{
$show = true;
}
}


IMPORTANT: Replace in WHERE group_id = x"; the x, with the id of the group you want to see the hidden code.


robin cracker [ Mon 27 Aug, 2007 19:17 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
thanks try this code in localhost to test, and later comment , thanks for your help zuker


Zuker [ Mon 27 Aug, 2007 19:21 ]
Post subject: Re: BBCode Hide message with an image buttom
robin cracker wrote: [View Post]
thanks try this code in localhost to test, and later comment , thanks for your help zuker


i hope this to work or help you in "how to code it"

i won't go further in this customization you ask for


Mighty Gorgon [ Mon 27 Aug, 2007 20:41 ]
Post subject: Re: BBCode Hide message with an image buttom
Playing with usergroups it's not so easy.

robin cracker, you should try to study a bit phpBB groups system and then try to add the check you wish.

Unfortunately such kind of modifications requires times and skills.

I would create PRIVATE forums instead of creating such a strange BBCode structure.

Zuker did already a lot trying to help you, but as he said, we try to help users where we can and as we can, but where requests require too much times, we can't always sacrifice our free time for that . Trust me we are trying to do our best to help anyone. A clap to Zuker for putting so many efforts in helping users like you in their customizations!


Zuker [ Mon 27 Aug, 2007 22:17 ]
Post subject: Re: BBCode Hide message with an image buttom
i told you that i would not work


robin cracker [ Tue 28 Aug, 2007 07:59 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
ok thanks for the help,im new in phpbb and php but i wish to learn where i ready the docs of code in icy?


aswin12 [ Thu 06 Sep, 2007 00:59 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
I get this error please help!!!!


Code: [Hide] [Select]
Parse error: syntax error, unexpected T_STRING in ******/htdocs/includes/bbcode.php on line 2598


Zuker [ Thu 06 Sep, 2007 12:46 ]
Post subject: Re: BBCode Hide message with an image buttom
You are missing someting i think. Attach your modded file here please.


aswin12 [ Thu 06 Sep, 2007 21:46 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
ok here you go....

Code: [Hide] [Select]
http://rapidshare.com/files/53866891/bbcode.php.html


Zuker [ Fri 07 Sep, 2007 04:20 ]
Post subject: Re: BBCode Hide message with an image buttom
attach it here please


aswin12 [ Sat 08 Sep, 2007 00:10 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
ok..


Zuker [ Sat 08 Sep, 2007 13:23 ]
Post subject: Re: BBCode Hide message with an image buttom
Try this file, i'm not at home so i can't test it, but maybe works


aswin12 [ Sun 09 Sep, 2007 19:43 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
yay! it works thanx.....


Zuker [ Sun 09 Sep, 2007 20:05 ]
Post subject: Re: BBCode Hide message with an image buttom
great


MiNdPhAsEr [ Sat 22 Sep, 2007 10:38 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Zuker wrote: [View Post]


With this changes, we have an image with the text of BBcode Hide explain.

But, the BBcode Hide doesn't have a bbcode button on posting.php (on reply).
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:
hide7aq = (rename this to hide.gif)
hide13lp = (rename this to hide1.gif)

In /languages/lang_xxx/bbcb_mg.js

FIND:
Code: [Hide] [Select]
s_smiley_creator =


AFTER, ADD

Code: [Hide] [Select]
s_hide_help = 'Hide a text, registered users must reply to view the hidden message: [hide]Quoted Hidden Message, which is still hidden.[/hide]';


FIND:

Code: [Hide] [Select]
var Td = 0;


AFTER ADD:

Code: [Hide] [Select]
var Hide = 0;


FIND:

Code: [Hide] [Select]
'[highlight=]'


AFTER ADD

Code: [Hide] [Select]
'[hide]Quoted Hidden Message, which is still hidden.[/hide]',


FIND:

Code: [Hide] [Select]
function BBCbold()


BEFORE ADD:

Code: [Hide] [Select]
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]Quoted Hidden Message, which is still hidden.[/hide]";
document.post.message.focus();
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozInsert(txtarea, "[hide]Quoted Hidden Message, which is still hidden.[/hide]");
return;
}
ToAdd = "[hide]Quoted Hidden Message, which is still hidden.[/hide]";
PostWrite(ToAdd);
}


In /templates/mg_themes/bbcb_mg.tpl

FIND:

Code: [Hide] [Select]
<a href="javascript:BBChl()" ><img border="0" 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:
Code: [Hide] [Select]
<a href="javascript:BBChide()" ><img border="0" src="{BBCB_MG_IMG_PATH}hide{BBCB_MG_IMG_EXT}" name="hide" type="image" onMouseOver="helpline('hide')" alt="Hide a message" title="Hide a message" class="bbimages" /></a>


(note: the text in alt="" and title="" must be with {language}

Now, with this changes, we have a new button to use the bbcode hide in the posting page


well i trie this but nothings work

when i post a message ill don't see the button for hide or /hide
and when i look from a other location at the post i see the image that ill look to a hidden message but unther the gif ill see the message that should be hidden

some body know's the solution ?

( sorry for my english i'm dutch )


Zuker [ Tue 02 Oct, 2007 20:16 ]
Post subject: Re: BBCode Hide message with an image buttom
review your changes, this worked for lot's of guys


Mairena [ Wed 24 Oct, 2007 23:22 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Zuker, thanks for this excelent mod... is very important in my forum...

I want to ask you for a modification: when a user quote the original post, he can see the hide message.. it´s possible to change that? I want to everyone Write something before see the message.. what do you think?


Zuker [ Thu 06 Mar, 2008 13:16 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Topic updated to make it work with 1.2 please test it


Master09 [ Sun 09 Mar, 2008 03:40 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
zuker can u help me with Hide Message when i do it im my forum i go alot of problems can i Attach my bbcode and u add the imagen to the hide message plz couse i never ge it good ?

ocultar
and this imagen when the user post a repley
ocultar_1205071898_756020


edfara [ Sat 19 Apr, 2008 18:42 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Zuker, una consulta funciona en la version Icy Phoenix 1.2.0.27a

Zuker, a consultation works in version Icy Phoenix 1.2.0.27a


ALTUN [ Fri 13 Jun, 2008 22:43 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
Thanks for superfine "BBCode Hide Message With An Image Buttom" Mod to Zuker. Thanks Zuker 0056


Fade05 [ Fri 18 Jul, 2008 00:35 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
I changed all files and upload images as was the explanation but I can not see the buttons on the panel BBCode.

he modificado todos los archivos y subi las imagenes como estaba en la explicacion pero no puedo ver los botones en el panel de bbcodes.



Alguna solucion? esto es en la version 1.2.0.27


channelasian [ Thu 09 Jul, 2009 03:56 ]
Post subject: Re: BBCode Hide Message With An Image Buttom
hello

how to do it with phpbb3 style Avaloncyan?

i cant do that. please help me.

Thanks

sorry for bad english.




Powered by Icy Phoenix