- Modificatie & Versie:Eigen knutsel
Directe link naar de modificatie:Die is er dan niet!
Adres van je forum: http://localhost
phpBB versie:3.0.1 RC2
Heb je onlangs een andere modificatie of stijl geïnstalleerd?Er is nog niets geinstalleerd, alleen een custom stijl "Aphrodite3"
Wat is het probleem?
Ik probeer inklapbare menu's te maken zoals op petesplace-online.co.uk. Ik heb daarvoor de MOD moeten ombouwen naar phpBB 3 maar hij klapt het menu niet in.
Code: Selecteer alles
<div class="post-details-block">
<a href="javascript:ShowHide('post{postrow.POST_ID}-show','post{postrow.POST_ID}-hide','post{postrow.POST_ID}-details');"><b>Poster Details</b></a>
<div class="post-details" id="post{postrow.POST_ID}-show" style="display: ''; position: relative;">
<!-- IF postrow.POSTER_JOINED --><b>{L_JOINED}:</b> {postrow.POSTER_JOINED}<br /><!-- ENDIF -->
<!-- IF postrow.POSTER_POSTS != '' --><b>{L_POSTS}:</b> {postrow.POSTER_POSTS}<br /><!-- ENDIF -->
<!-- IF postrow.POSTER_FROM --><b>{L_LOCATION}:</b> {postrow.POSTER_FROM}<br /><!-- ENDIF -->
<!-- IF postrow.S_PROFILE_FIELD1 -->
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
<b>{postrow.PROFILE_FIELD1_NAME}:</b> {postrow.PROFILE_FIELD1_VALUE}<br />
<!-- ENDIF -->
<!-- BEGIN custom_fields -->
<b>{postrow.custom_fields.PROFILE_FIELD_NAME}:</b> {postrow.custom_fields.PROFILE_FIELD_VALUE}<br />
<!-- END custom_fields -->
</div>
<div class="post-details" id="post{postrow.POST_ID}-hide" style="display: none; position: relative;">
</div>
<script language="javascript" type="text/javascript">
<!--
tmp = 'post{postrow.POST_ID}-details';
if(GetCookie(tmp) == '2')
{
ShowHide('post{postrow.POST_ID}-show','post{postrow.POST_ID}-hide','post{postrow.POST_ID}-details');
}
//-->
</script>
</div>