Seite 1 von 1

**erledigt**Profil abfragen ändern?

Verfasst: 17.07.2011 12:41
von winnetou
Hallo,
wo/wie kann ich die Angaben im Profil ändern?
Und zwar möchte ich das im Persönlichen Bereich unter Reiter Profil wo man eintragen kann Wohnort<<<Website<<<Tätigkeit.....usw.
Dort anstatt Wohnort, Stadtteil stehen haben.

Lg
Jürgen

Re: Profil abfragen ändern?

Verfasst: 17.07.2011 13:02
von franki
Hallo

Du könntest in der language/de/common.php

Code: Alles auswählen

'LOCATION'							=> 'Wohnort',
ändern in

Code: Alles auswählen

'LOCATION'							=> 'Stadtteil',
Wenn es aber nur im pers. Bereich stehen soll dann
suche

Code: Alles auswählen

'LOCATION'							=> 'Wohnort',
füge danach ein

Code: Alles auswählen

'LOCATION_ST'							=> 'Stadtteil',
öffne
styles\prosilver\template\ucp_profile_profile_info.html
suche

Code: Alles auswählen

<dl>
		<dt><label for="location">{L_LOCATION}:</label></dt>
		<dd><input type="text" name="location" id="location" maxlength="255" value="{LOCATION}" class="inputbox" /></dd>
	</dl>
ersetze mit

Code: Alles auswählen

<dl>
		<dt><label for="location">{L_LOCATION_ST}:</label></dt>
		<dd><input type="text" name="location" id="location" maxlength="255" value="{LOCATION}" class="inputbox" /></dd>
	</dl>

Re: Profil abfragen ändern?

Verfasst: 17.07.2011 13:14
von winnetou
Hi Franki,
Danke für die schnelle Antwort. Hat super geklappt!

Lg
Jürgen