cum pot sa ......

Pentru întrebări legate de facilităţile forumului phpBB 3.0.x, acest loc este cel mai potrivit.
Reguli forum
Aveti o problema si vreti sa primiti ajutor? Click aici ! Nu uitati si de regulamentul forumului !
Avatar utilizator
d3zz
Utilizator înregistrat
Mesaje: 122
Membru din: 06-Ian-2013, 18:44:26
Versiune: phpbb3
Ext: Nu
Server: Windows
Nivel phpBB: Puţin experimentat
Nivel php: Puţin experimentat

cum pot sa ......

Mesaj de d3zz »

cum pot sa modific si eu la profil ca aici
http://i44.tinypic.com/2q3qb2p.png
vreau sa modific sa adaug un camp cu "Rank : x
si cu Status : online/offline
daca reusesc am sa sterg imaginea cu online /offline si am sa scot rankurile de pe forum
Bladell
Utilizator înregistrat
Mesaje: 75
Membru din: 02-Dec-2012, 13:45:39
Versiune: 3.11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de Bladell »

Ne-ar fi de folos un link catre forumul tau, sau cel putin sa ne spui ce tema folosesti.
Avatar utilizator
d3zz
Utilizator înregistrat
Mesaje: 122
Membru din: 06-Ian-2013, 18:44:26
Versiune: phpbb3
Ext: Nu
Server: Windows
Nivel phpBB: Puţin experimentat
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de d3zz »

pai folosesc tema etech , forum link aici
eu stiu ca se modifica din viewtopic_body si deja am si modificat putin campurile de profil insa mai am nevoie de cele 2
http://i39.tinypic.com/98g1g4.png
Bladell
Utilizator înregistrat
Mesaje: 75
Membru din: 02-Dec-2012, 13:45:39
Versiune: 3.11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de Bladell »

Inlocuieste :

Cod: Selectaţi tot

<div class="postdetails">
					<!-- IF postrow.POSTER_JOINED --><br /><b>{L_JOINED}:</b> {postrow.POSTER_JOINED}<!-- ENDIF -->
					<!-- IF postrow.POSTER_POSTS != '' --><br /><b>{L_POSTS}:</b> {postrow.POSTER_POSTS}<!-- ENDIF -->
					<!-- IF postrow.POSTER_FROM --><br /><b>{L_LOCATION}:</b> {postrow.POSTER_FROM}<!-- 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. -->
						<br /><b>{postrow.PROFILE_FIELD1_NAME}:</b> {postrow.PROFILE_FIELD1_VALUE}
					<!-- ENDIF -->

					<!-- BEGIN custom_fields -->
						<br /><b>{postrow.custom_fields.PROFILE_FIELD_NAME}:</b> {postrow.custom_fields.PROFILE_FIELD_VALUE}
					<!-- END custom_fields -->
				</div>
cu

Cod: Selectaţi tot

				<div class="postdetails">
					<!-- IF postrow.POSTER_JOINED --><br /><b>{L_JOINED}:</b> {postrow.POSTER_JOINED}<!-- ENDIF -->
					<!-- IF postrow.POSTER_POSTS != '' --><br /><b>{L_POSTS}:</b> {postrow.POSTER_POSTS}<!-- ENDIF -->
					<!-- IF postrow.POSTER_FROM --><br /><b>{L_LOCATION}:</b> {postrow.POSTER_FROM}<!-- ENDIF -->
					</br><b>Rank:</b><!-- IF postrow.RANK_TITLE --><b>{postrow.RANK_TITLE}</b><!-- ENDIF -->
					</br><b>Status:</b><!-- IF postrow.S_ONLINE --><b><font color="green">Online</font></b><!-- ELSEIF --><b><font color="red">Offline</font></b><!-- 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. -->
						<br /><b>{postrow.PROFILE_FIELD1_NAME}:</b> {postrow.PROFILE_FIELD1_VALUE}
					<!-- ENDIF -->

					<!-- BEGIN custom_fields -->
						<br /><b>{postrow.custom_fields.PROFILE_FIELD_NAME}:</b> {postrow.custom_fields.PROFILE_FIELD_VALUE}
					<!-- END custom_fields -->
				</div>
Avatar utilizator
d3zz
Utilizator înregistrat
Mesaje: 122
Membru din: 06-Ian-2013, 18:44:26
Versiune: phpbb3
Ext: Nu
Server: Windows
Nivel phpBB: Puţin experimentat
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de d3zz »

ms dar cum fac sa arate rankul cu diferite culori ca in legenda ? ca aici http://i44.tinypic.com/2q3qb2p.png
si la status merge decat online , la offline nu scrie nimic decat status :
Bladell
Utilizator înregistrat
Mesaje: 75
Membru din: 02-Dec-2012, 13:45:39
Versiune: 3.11
Ext: Nu
Server: Windows
Nivel phpBB: Mediu
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de Bladell »

Cod: Selectaţi tot

            <div class="postdetails">
               <!-- IF postrow.POSTER_JOINED --><br /><b>{L_JOINED}:</b> {postrow.POSTER_JOINED}<!-- ENDIF -->
               <!-- IF postrow.POSTER_POSTS != '' --><br /><b>{L_POSTS}:</b> {postrow.POSTER_POSTS}<!-- ENDIF -->
               <!-- IF postrow.POSTER_FROM --><br /><b>{L_LOCATION}:</b> {postrow.POSTER_FROM}<!-- ENDIF -->
               </br><b>Rank:</b><!-- IF postrow.RANK_TITLE --><a <!-- IF postrow.POST_AUTHOR_COLOUR --> style="color: {postrow.POST_AUTHOR_COLOUR}" <!-- ENDIF -->"><b>{postrow.RANK_TITLE}</b></><!-- ENDIF -->
               </br><b>Status:</b><!-- IF postrow.S_ONLINE --><b><font color="green">{L_ONLINE}</font></b><!-- ELSE --><b><font color="red">{L_OFFLINE}</font></b><!-- 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. -->
                  <br /><b>{postrow.PROFILE_FIELD1_NAME}:</b> {postrow.PROFILE_FIELD1_VALUE}
               <!-- ENDIF -->

               <!-- BEGIN custom_fields -->
                  <br /><b>{postrow.custom_fields.PROFILE_FIELD_NAME}:</b> {postrow.custom_fields.PROFILE_FIELD_VALUE}
               <!-- END custom_fields -->
            </div>
Incearca asa...
Avatar utilizator
d3zz
Utilizator înregistrat
Mesaje: 122
Membru din: 06-Ian-2013, 18:44:26
Versiune: phpbb3
Ext: Nu
Server: Windows
Nivel phpBB: Puţin experimentat
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de d3zz »

merge , am mai modificat eu uite http://i44.tinypic.com/nq4r6c.png nu sti cum pot sa modific sa fie mai mic chenarul ? pana acum la toate au fost la fel dar .. [nu din css] vreau sa fie la fel ca celelalte
Avatar utilizator
Anișor
AdministratorAdministrator
Mesaje: 2988
Membru din: 08-Aug-2012, 20:46:05
Versiune: 4.0.0-a1
Ext: Da
Server: UNIX/Linux
Nivel phpBB: Experimentat
Nivel php: Mediu
Localitate: Arbroath, Angus
Contact:

Re: cum pot sa ......

Mesaj de Anișor »

Atata timp cat continutul din interiorul chenarelor este mai mare , si chenarul se mareste.
Nu ofer ajutor prin intermediul mesageriei private.
Vă rog să postați toate problemele în forumuri.
Avatar utilizator
d3zz
Utilizator înregistrat
Mesaje: 122
Membru din: 06-Ian-2013, 18:44:26
Versiune: phpbb3
Ext: Nu
Server: Windows
Nivel phpBB: Puţin experimentat
Nivel php: Puţin experimentat

Re: cum pot sa ......

Mesaj de d3zz »

pai este la fel ca si celelalte
Avatar utilizator
Anișor
AdministratorAdministrator
Mesaje: 2988
Membru din: 08-Aug-2012, 20:46:05
Versiune: 4.0.0-a1
Ext: Da
Server: UNIX/Linux
Nivel phpBB: Experimentat
Nivel php: Mediu
Localitate: Arbroath, Angus
Contact:

Re: cum pot sa ......

Mesaj de Anișor »

Eu vad ca la status cs , e pe doua randuri , ceea ce inseamna ca , chenarul s-a marit.
Nu ofer ajutor prin intermediul mesageriei private.
Vă rog să postați toate problemele în forumuri.
Închis

Înapoi la “3.0.x Cum pot să...?”

Cine este conectat

Utilizatori ce ce navighează pe acest forum: Niciun utilizator înregistrat și 3 vizitatori