Seite 1 von 1

"Mini-Profil"- Einstellungen

Verfasst: 22.09.2015 18:36
von aimless44
Hallo zusammen,

habe heute mein Board von 3.0.12 auf 3.1.6 upgedated und muss schon sagen, dass das große Klasse ist.

Hätte eine Frage, per Suchfunktion habe ich wieder nichts auf die Reihe bekommen.

[ externes Bild ]

Wo kann ich denn hier einstellen, was angezeigt wird? Ich hätte zum Beispiel gerne "Kontaktdaten" und "Registriert am" überhaupt nicht drin.

Nur "Beiträge" am liebsten. Wohnort egal.

Muss ich da hier rein?
root/styles/stylename/template/viewtopic_body.html
???

Was wenn ich mehrere Styles installiert habe?

Vielen Dank!

Re: "Mini-Profil"- Einstellungen

Verfasst: 22.09.2015 19:10
von Lehrling
du kannst den Teil auch einfach ausblenden. Suche in der viewtopic_body.html nach diesem Abschnitt:

Code: Alles auswählen

<!-- IF not S_IS_BOT and .postrow.contact -->
			<dd class="profile-contact">
				<strong>{L_CONTACT}{L_COLON}</strong>
				<div class="dropdown-container dropdown-left">
					<a href="#" class="dropdown-trigger"><span class="imageset icon_contact" title="{postrow.CONTACT_USER}">{postrow.CONTACT_USER}</span></a>
					<div class="dropdown hidden">
						<div class="pointer"><div class="pointer-inner"></div></div>
						<div class="dropdown-contents contact-icons">
							<!-- BEGIN contact -->
								{% set REMAINDER = postrow.contact.S_ROW_COUNT % 4 %}
								<!-- DEFINE $S_LAST_CELL = ((REMAINDER eq 3) or (postrow.contact.S_LAST_ROW and postrow.contact.S_NUM_ROWS < 4)) -->
								<!-- IF REMAINDER eq 0 -->
									<div>
								<!-- ENDIF -->
									<a href="<!-- IF postrow.contact.U_CONTACT -->{postrow.contact.U_CONTACT}<!-- ELSE -->{postrow.U_POST_AUTHOR}<!-- ENDIF -->" title="{postrow.contact.NAME}"<!-- IF $S_LAST_CELL --> class="last-cell"<!-- ENDIF --><!-- IF postrow.contact.ID eq 'jabber' --> onclick="popup(this.href, 750, 320); return false;"<!-- ENDIF -->>
										<span class="contact-icon {postrow.contact.ID}-icon">{postrow.contact.NAME}</span>
									</a>
								<!-- IF REMAINDER eq 3 or postrow.contact.S_LAST_ROW -->
									</div>
								<!-- ENDIF -->
							<!-- END contact -->
						</div>
					</div>
				</div>
			</dd>
		<!-- ENDIF -->
Davor fügst du das ein:

Code: Alles auswählen

<div style="display:none;">
und danach </div>

Re: "Mini-Profil"- Einstellungen

Verfasst: 22.09.2015 19:26
von aimless44
Hat geklappt.

1000 Dank!