Verwijdering van standard icoontjes phpbb ( opgelost )

Hulp nodig bij een modificaties of op zoek naar een MOD? Bekijk ons archief. Support wordt helaas niet meer verleend.
Forumregels

Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
phpBB2.0.x
Gesloten
Gebruikersavatar
special18
Berichten: 700
Lid geworden op: 29 jan 2007, 16:31
Locatie: Lelystad
Contacteer:

Verwijdering van standard icoontjes phpbb ( opgelost )

Bericht door special18 » 29 mar 2007, 09:28

Hallo mensen, ik maak gebruik van een menu zoals van een andere forum software, ik vindt dit handiger en meer seo manier. Daarom wil ik graag die plaatjes weghalen met de links erachter.

voorbeeld link: http://animedreamresource.net/phpBB2/viewtopic.php?t=36
blauw witte plaatjes pm msn e-mail etc.

Aangezien ze nu nogal nutteloose zijn, maar ik wil ze wel in de memberlist behouden. Weet iemand waar ik dat moet verwijderen en dan welke code precies? alvast bedankt. :thumb:
Laatst gewijzigd door special18 op 29 mar 2007, 10:29, 1 keer totaal gewijzigd.
http://www.animeresource.org Free Anime downloading and streaming, community forums and Anime Radio.

Gebruikersavatar
Jan
Berichten: 1987
Lid geworden op: 30 mei 2006, 20:30
Locatie: De kelder van Dhr. J. Fritzl
Contacteer:

Bericht door Jan » 29 mar 2007, 09:35

Staat in templates/jouw_template/viewtopic_body.tpl
Vriendelijke groet,
Jan
Gratis Forum - Gratis Blog - Blokart

Gebruikersavatar
special18
Berichten: 700
Lid geworden op: 29 jan 2007, 16:31
Locatie: Lelystad
Contacteer:

Bericht door special18 » 29 mar 2007, 09:55

Oke naja die file is nogal een wirwar, zou iemand mij mogenlijk willen helpen met verwijderen van links en plaatjes anders ben ik weer zo slim dat ik de plaatjes verwijder en onzinnige code en links erin zitten.

Code van de file:

Code: Selecteer alles

<script type="text/javascript">

//Contents for menu 2, and so on
<!-- BEGIN postrow -->
var menu{postrow.VB_MENU_ID}=new Array()
menu{postrow.VB_MENU_ID}[0]='<a class="vbmh">&nbsp;{postrow.POSTER_NAME}</a>'
menu{postrow.VB_MENU_ID}[1]='{postrow.VB_MENU_PROFILE}'
menu{postrow.VB_MENU_ID}[2]='{postrow.VB_MENU_PM}'
menu{postrow.VB_MENU_ID}[3]='{postrow.VB_MENU_SEARCH}'
menu{postrow.VB_MENU_ID}[4]='{postrow.VB_MENU_EMAIL}'
menu{postrow.VB_MENU_ID}[5]='{postrow.VB_MENU_WWW}'
//menu{postrow.VB_MENU_ID}[6]='{postrow.VB_MENU_ALBUM}'
<!-- END postrow -->
var menuwidth='selfc' //default menu width
var menubgcolor='#F2F2F2'  //menu bgcolor
var disappeardelay='350'  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick='yes' //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all
var defaultwidth=menuwidth
if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}
function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
dropmenuobj.widthobj=dropmenuobj.style
if (typeof menuwidth=='undefined'||menuwidth=='selfc'){
tmpspan.style.display='inline'
dropmenuobj.widthobj.width=tmpspan.offsetWidth+'px'
tmpspan.style.display='none'
}
else if (menuwidth!='')
dropmenuobj.widthobj.width=menuwidth
else
dropmenuobj.widthobj.width=defaultwidth
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}
function populatemenu(what){
if (ie4||ns6){
var appendit=0
if (typeof tmpspan=='undefined'){
tmpspan=document.createElement('span')
appendit=1
}
if(appendit){
tmpspan.style.position="absolute"
tmpspan.style.left="-1000px"
tmpspan.id='tspan'
document.body.appendChild(tmpspan)
tmpspan.style.display='none'
}
tmpspan.innerHTML=dropmenuobj.innerHTML=what.join("")
}
}
function dropdownmenu(obj, e, menucontents, menuwidth){
obj.onmouseout=delayhidemenu;
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)
if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}
return clickreturnvalue()
}
function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}
function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}
function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}
function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}
if (hidemenu_onclick=="yes")
document.onclick=hidemenu
</script>

<table width="100%" cellspacing="1" cellpadding="4" border="0" class="tborder">
   <tr> 
     <td class="row2" align="left" valign="bottom" colspan="2"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a> -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a> -> {TOPIC_TITLE}</span><br />
     </td>
   </tr>
</table>

<br />

<table width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom:5px">
	<tr align="right">
	<td align="left" valign="middle" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>&nbsp;&nbsp;&nbsp;<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>

		<td colspan="2" valign="middle"><span class="nav2"><a href="{U_VIEW_OLDER_TOPIC}" class="nav2">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav2">{L_VIEW_NEXT_TOPIC}</a></span><br /><div class="gensmall" style="margin-top:2px"><b>{PAGINATION}</b></div></td>
	</tr>
</table>

	{POLL_DISPLAY} 


<!-- BEGIN postrow -->

<!-- top category table setup -->
<table width="100%" style="background-image:url(templates/iSkin/images/cat_back.gif)" border="0" cellpadding="0" cellspacing="0">
   <tr>
     <td width="33" height="27" align="left" valign="top"><img src="templates/iSkin/images/cat_top_ls.gif" width="33" height="27" alt=" " border="0" /></td>
     <td width="22" height="27" align="left" valign="top"><img src="templates/iSkin/images/text_ls.gif" width="22" height="27" alt=" " border="0" /></td>
     <td width="50%" class="tcat" style="background-image:url(templates/iSkin/images/cat_top_text_bk.gif)" align="left">
     <span class="cattitle">{postrow.POST_SUBJECT}</span>
     </td>
     <td width="30" height="27" align="left" valign="top"><img src="templates/iSkin/images/cat_top_text_end.gif" width="30" height="27" alt=" " border="0" /></td>
     <td width="50%" height="27" align="left" valign="top"><img src="templates/iSkin/images/cat_back.gif" width="50%" height="27" alt=" " border="0" /></td>
     <td width="19" height="27" align="left" valign="middle"><a href="javascript:scroll(0,0);"><img src="templates/iSkin/images/collapse_tcat.gif" width="19" height="19" alt="" border="0" /></a></td>
     <td width="20" height="27" align="right" valign="top"><img src="templates/iSkin/images/cat_top_rs.gif" width="20" height="27" alt=" " border="0" /></td>
   </tr>
</table>
<!-- End top category table setup -->

<table class="tborder" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
   <tr>
     <th width="150" height="26" nowrap="nowrap">{L_AUTHOR}</th>
     <th nowrap="nowrap">{L_MESSAGE}</th>
   </tr>
   <tr>
     <td class="row1" width="150" align="left" valign="top" nowrap="nowrap" style="padding-right:11px"><span class="name"><a name="{postrow.U_POST_ID}"></a><b><a class="nav" href="javascript:void(0)" onClick="return dropdownmenu(this, event, menu{postrow.VB_MENU_ID}, 'selfc')" onMouseout="delayhidemenu()">{postrow.POSTER_NAME}</a></b></span><br /><span class="postdetails">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /><br /><span class="postdetails">{postrow.POST_DATE}</span></td>
     <td class="row2" width="100%" valign="top">

<table width="100%" border="0" cellspacing="0" cellpadding="0">
   <tr>
     <td valign="top" style="padding-bottom:3px; padding-top:3px" align="right">{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}</td>
   </tr><tr> 
     <td style="background-color: #656565" height="1"><img src="templates/iSkin/images/trans.gif" width="1" height="1" alt="" border="0" /></td>
   </tr><tr>
     <td style="padding-top:3px" colspan="2" align="left" valign="top"><div class="postoverflow"><span class="postbody">{postrow.MESSAGE}</span></td>
   </tr><tr>
     <td colspan="2" align="left" valign="bottom" height="100%"><span class="postsig">{postrow.SIGNATURE}</span><span class="gensmall">{postrow.EDITED_MESSAGE}</span></div></td>
   </tr>
</table>

     </td>
   </tr>
   <tr> 
     <td colspan="2" class="row1" width="100%" height="15" align="left" valign="bottom" nowrap="nowrap">

<table cellspacing="0" cellpadding="0" border="0">
   <tr> 
     <td style="padding-left:2px; padding-top:2px" valign="bottom" align="center">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG} {postrow.ICQ_IMG}</td>
   </tr>	
</table>

     </td>
  </tr>
 </table>

<!-- bottom table setup -->
<div class="ftr_bdr">
<table width="100%" class="row1" cellpadding="0" cellspacing="0">
   <tr>
     <td width="100%" height="9"><img src="templates/iSkin/images/btm_base.gif"  width="100%" height="9" alt="" border="0" /></td>
   </tr>
</table>
</div>
<!-- bottom table setup -->   

<br />
	<!-- END postrow -->

<form method="post" action="{S_POST_DAYS_ACTION}" style="padding:0px;margin:0px">
<table class="tborder" width="100%" cellspacing="1" cellpadding="3" border="0" align="center">
	<tr align="center"> 

		<td class="row1" colspan="2" height="15"><table cellspacing="0" cellpadding="0" border="0">
			<tr>
				<td align="center"><span class="genmed">{L_DISPLAY_POSTS}: {S_SELECT_POST_DAYS}&nbsp;{S_SELECT_POST_ORDER}&nbsp;<input type="submit" class="mainoption" value="Go" name="submit" /></span></td>
			</tr>
		</table></td>
	</tr>
</table>
</form>

<table width="100%" cellspacing="0" cellpadding="0" border="0" align="center" style="margin-top:3px">
  <tr> 
	<td align="left" valign="middle" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" /></a>&nbsp;&nbsp;&nbsp;<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" /></a></span></td>
	<td align="left" valign="middle" width="100%"><span class="nav">&nbsp;&nbsp;&nbsp;{PAGE_NUMBER}</span></td>
	<td align="right" valign="top" nowrap="nowrap"><span class="gensmall">{S_TIMEZONE}</span><br /><span class="nav">{PAGINATION}</span> 
	  </td>
  </tr>
</table>

<br />

<table width="100%" cellspacing="2" border="0" align="center">
  <tr> 
	<td width="40%" valign="top" nowrap="nowrap" align="left"><span class="gensmall">{S_WATCH_TOPIC}</span></td>
	<td align="right" valign="top" nowrap="nowrap">{JUMPBOX}</td>
  </tr>
  <tr>
	<td width="100%" nowrap="nowrap" colspan="2">
		<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
		  <tr>
			<td class="catHead" align="center" colspan="2" height="28"><span class="cattitle">{L_QUICK_REPLY}</span></td>
		  </tr>
<!-- BEGIN switch_quick_reply -->
		  <tr>
			<td class="row1" align="center">
				<script language="JavaScript" type="text/javascript"><!--
function checkForm() {
	formErrors = false;
	if (document.post.message.value.length < 2) {
	formErrors = '{L_EMPTY_MSG}';
	}
	if (formErrors) {
		alert(formErrors);
		return false;
	} else {
		return true;
	}
}
				//--></script>
				<form action="{S_POSTING}" method="post" name="post" onsubmit="return checkForm(this)"><span class="genmed">
<!-- BEGIN switch_user_logged_out -->
					<b>{L_USERNAME}:</b> <input class="post" type="text" name="username" size="25" maxlength="25" value="" /><br />
<!-- END switch_user_logged_out -->
					<textarea class="post" name="message" rows="10" cols="50" wrap="virtual"></textarea><br />
					<input type="hidden" name="attach_sig" value="{S_ATTACH_SIG}" />
					<input type="hidden" name="mode" value="reply" />
					<input type="hidden" name="sid" value="{S_SID}" />
					<input type="hidden" name="t" value="{S_TOPIC_ID}" />
					<input type="hidden" name="notify" value="{S_NOTIFY}" /><br />
					<input type="submit" name="preview" class="liteoption" value="{L_PREVIEW}" />
					&nbsp;
					<input type="submit" name="post" class="mainoption" value="{L_SUBMIT}" />
				</span></form>
			</td>
		  </tr>
		</table>
	</td>
  </tr>
<!-- END switch_quick_reply -->
  <tr>
	<td width="40%" valign="top" nowrap="nowrap" align="left"><span class="gensmall">{S_TOPIC_ADMIN}</td>
	<td align="right" valign="top" nowrap="nowrap"><span class="gensmall">{S_AUTH_LIST}</span></td>
  </tr>
</table>
http://www.animeresource.org Free Anime downloading and streaming, community forums and Anime Radio.

Coen
Berichten: 5387
Lid geworden op: 03 aug 2004, 10:25

Bericht door Coen » 29 mar 2007, 10:08

Dit zijn ze:

Code: Selecteer alles

<table cellspacing="0" cellpadding="0" border="0">
   <tr>
     <td style="padding-left:2px; padding-top:2px" valign="bottom" align="center">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG} {postrow.ICQ_IMG}</td>
   </tr>   
</table> 
Volgens mij kun je dit helemaal weghalen... :roll:

Gebruikersavatar
special18
Berichten: 700
Lid geworden op: 29 jan 2007, 16:31
Locatie: Lelystad
Contacteer:

Bericht door special18 » 29 mar 2007, 10:25

Zero Override schreef:Dit zijn ze:

Code: Selecteer alles

<table cellspacing="0" cellpadding="0" border="0">
   <tr>
     <td style="padding-left:2px; padding-top:2px" valign="bottom" align="center">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG} {postrow.ICQ_IMG}</td>
   </tr>   
</table> 
Volgens mij kun je dit helemaal weghalen... :roll:
danke danke :thumb:
http://www.animeresource.org Free Anime downloading and streaming, community forums and Anime Radio.

Coen
Berichten: 5387
Lid geworden op: 03 aug 2004, 10:25

Bericht door Coen » 29 mar 2007, 10:30

Graag gedaan en succes verder! :thumb:

Gesloten