

SaudShah wrote:when i installed this mod, after what i got read this http://www.phpbb.com/community/viewtopi ... 5#p4286115
I suggest you undo the Hide mod then re-install it. Double check your edits because it seems you forgot to install a part of the MOD.SaudShah wrote:SaudShah wrote:when i installed this mod, after what i got read this http://www.phpbb.com/community/viewtopi ... 5#p4286115
help me out i cant make it fix
pawan wrote:I was using the simple hide bb code for BF_VISTA Style but now i changed to prosilver theme but now i don't see the text " Reply to see the hidden links" . Please help.
Code: Select all
########################################################
## MOD Title: [phpBB3] Simple Hide BBcode MOD for prosilver
## MOD Author: ycl6 < ycl6@users.sourceforge.net > (Y.C. LIN) http://macphpbbmod.sourceforge.net/
## MOD Description: MOD tutorial for prosilver template
## MOD Version: 0.0.2
##
## Installation Level: Easy
## Installation Time: 5 Minutes
##
## Files To Edit: 4
## styles/prosilver/template/bbcode.html
## styles/prosilver/theme/bidi.css
## styles/prosilver/theme/colours.css
## styles/prosilver/theme/content.css
##
## Included Files: N/A
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
#################################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:
## Tested on phpBB 3.0.0 RC3.
##
##############################################################
## MOD History:
##
## 2007-07-01 - Version 0.0.1
## - Initial Release for BETA testing
##
## 2007-07-28 - Version 0.0.2
## - Fix a MOD action error in bbcode.html
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/template/bbcode.html
#
#-----[ FIND ]------------------------------------------
#
<!-- END flash -->
#
#-----[ AFTER, ADD ]------------------------------------------
#
<!-- BEGIN unhide_open --><dl class="hidebox"><dt class="unhide">{L_MESSAGE_UNHIDE}</dt><dd><!-- END unhide_open -->
<!-- BEGIN unhide_close --></dd></dl><!-- END unhide_close -->
<!-- BEGIN hide --><dl class="hidebox"><dt class="hide">{L_MESSAGE_HIDDEN}</dt><dd>{L_MESSAGE_HIDDEN_DESCRIPTION}</dd></dl><!-- END hide -->
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/theme/bidi.css
#
#-----[ FIND ]------------------------------------------
#
.rtl blockquote dl.codebox {
#
#-----[ IN-LINE FIND ]------------------------------------------
#
dl.codebox
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
dl.hidebox
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/theme/colours.css
#
#-----[ FIND ]------------------------------------------
#
/* Code block */
#
#-----[ BEFORE, ADD ]------------------------------------------
#
/* Hide block */
dl.hidebox {
background-color: #FFFFFF;
border-color: #C9D2D8;
}
dl.hidebox dt {
border-bottom-color: #CCCCCC;
}
#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/theme/content.css
#
#-----[ FIND ]------------------------------------------
#
/* Code block */
#
#-----[ BEFORE, ADD ]------------------------------------------
#
/* Hide block */
dl.hidebox {
padding: 3px;
background-color: #FFFFFF;
border: 1px solid #d8d8d8;
font-size: 1em;
}
dl.hidebox dt {
text-transform: uppercase;
border-bottom: 1px solid #CCCCCC;
margin-bottom: 3px;
font-size: 0.8em;
font-weight: bold;
display: block;
}
dt.unhide {
color: #339900;
}
dt.hide {
color: #990000;
}
blockquote dl.hidebox {
margin-left: 0;
}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Thank you this helped.BizimPencere wrote:FiX is
FIND 2 CODE FROM VIEWTOPIC AN SEARCH.PHP (From simple hide bbcode=
FIND
Code: Select all
$user->setup('mods/simple_hide_bbcode');
REPLACE
$user->add_lang('mods/simple_hide_bbcode');![]()
![]()
![]()
Thanks you levian
jalaln wrote:pawan wrote:I was using the simple hide bb code for BF_VISTA Style but now i changed to prosilver theme but now i don't see the text " Reply to see the hidden links" . Please help.Code: Select all
######################################################## ## MOD Title: [phpBB3] Simple Hide BBcode MOD for prosilver ## MOD Author: ycl6 < ycl6@users.sourceforge.net > (Y.C. LIN) http://macphpbbmod.sourceforge.net/ ## MOD Description: MOD tutorial for prosilver template ## MOD Version: 0.0.2 ## ## Installation Level: Easy ## Installation Time: 5 Minutes ## ## Files To Edit: 4 ## styles/prosilver/template/bbcode.html ## styles/prosilver/theme/bidi.css ## styles/prosilver/theme/colours.css ## styles/prosilver/theme/content.css ## ## Included Files: N/A ## ## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ################################################################# ## For security purposes, please check: http://www.phpbb.com/mods/ ## for the latest version of this MOD. Although MODs are checked ## before being allowed in the MODs Database there is no guarantee ## that there are no security problems within the MOD. No support ## will be given for MODs not found within the MODs Database which ## can be found at http://www.phpbb.com/mods/ ############################################################## ## Author Notes: ## Tested on phpBB 3.0.0 RC3. ## ############################################################## ## MOD History: ## ## 2007-07-01 - Version 0.0.1 ## - Initial Release for BETA testing ## ## 2007-07-28 - Version 0.0.2 ## - Fix a MOD action error in bbcode.html ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ OPEN ]------------------------------------------ # styles/prosilver/template/bbcode.html # #-----[ FIND ]------------------------------------------ # <!-- END flash --> # #-----[ AFTER, ADD ]------------------------------------------ # <!-- BEGIN unhide_open --><dl class="hidebox"><dt class="unhide">{L_MESSAGE_UNHIDE}</dt><dd><!-- END unhide_open --> <!-- BEGIN unhide_close --></dd></dl><!-- END unhide_close --> <!-- BEGIN hide --><dl class="hidebox"><dt class="hide">{L_MESSAGE_HIDDEN}</dt><dd>{L_MESSAGE_HIDDEN_DESCRIPTION}</dd></dl><!-- END hide --> # #-----[ OPEN ]------------------------------------------ # styles/prosilver/theme/bidi.css # #-----[ FIND ]------------------------------------------ # .rtl blockquote dl.codebox { # #-----[ IN-LINE FIND ]------------------------------------------ # dl.codebox # #-----[ IN-LINE AFTER, ADD ]------------------------------------------ # dl.hidebox # #-----[ OPEN ]------------------------------------------ # styles/prosilver/theme/colours.css # #-----[ FIND ]------------------------------------------ # /* Code block */ # #-----[ BEFORE, ADD ]------------------------------------------ # /* Hide block */ dl.hidebox { background-color: #FFFFFF; border-color: #C9D2D8; } dl.hidebox dt { border-bottom-color: #CCCCCC; } # #-----[ OPEN ]------------------------------------------ # styles/prosilver/theme/content.css # #-----[ FIND ]------------------------------------------ # /* Code block */ # #-----[ BEFORE, ADD ]------------------------------------------ # /* Hide block */ dl.hidebox { padding: 3px; background-color: #FFFFFF; border: 1px solid #d8d8d8; font-size: 1em; } dl.hidebox dt { text-transform: uppercase; border-bottom: 1px solid #CCCCCC; margin-bottom: 3px; font-size: 0.8em; font-weight: bold; display: block; } dt.unhide { color: #339900; } dt.hide { color: #990000; } blockquote dl.hidebox { margin-left: 0; } # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM