Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
Xell Tremox

Profil-Felder anordnen (Kommentare zuerst statt Topics)

Recommended Posts

Hallo gemeinde :)

Ich möchte gerne die reihenfolge der Tabs im Profil ändern.

Also wenn ich auf ein profil klicke, sehe ich die Topics zuerst - ich möchte aber die kommentare zuerst sehen ;)

Kann mir da einer helfen?

So sieht es bei mir aus:

an1v6t.png

Ich möchte es aber so haben: (also die Kommentare zuerst... der rest ist egal wie es angeordnet ist)

f3s0hh.png

Was muss ich da genau ändern damit die reihenfolge so ist??

DANKEEEE

Ich besitze IPB 233

Share this post


Link to post

Hallo und Willkommen!

Ich möchte Dich zunächst bitten demnächst Themen nicht doppelt zu eröffnen. Ein Thema zu einer Anfrage langt vollkommen aus.

Share this post


Link to post

Hallo und Willkommen!

Ich möchte Dich zunächst bitten demnächst Themen nicht doppelt zu eröffnen. Ein Thema zu einer Anfrage langt vollkommen aus.

Yo hehehe, das war wirklich garkeine absicht von mir. Hab es ins falsche forum gepostet gehabt- SORRY dafür

Und vielen dank für das Willkommen heissen :)

Bin hier schon länger auf dem board aktiv. Mittlerweile habe ich schon fast jedes Problem gelöst, nur diese 2 sachen mit dem profil und das mit dem persönlichen foto zerreissen mir den kopf *g*

Share this post


Link to post

Hat sich dann erledigt...

Open sources/action_public/profile.php. Find:

CODE $tab = $tab ? $tab : 'topics';

Change to:

CODE $tab = $tab ? $tab : 'comments';

Save and upload the edited file. Edit your Profile View -> personal_portal_main skin template. Find:

CODE <foreach="$tabs as $tab">

<div class='pp-taboff' id='pp-content-tab-{$tab['plugin_key']}'>{$tab['_lang']}</div>

</foreach>

<div class='pp-taboff' id='pp-content-tab-comments'>{$this->ipsclass->lang['m_tab_comments']}</div>

<div class='pp-taboff' id='pp-content-tab-friends'>{$this->ipsclass->lang['m_tab_friends']}</div>

Change to:

CODE <div class='pp-taboff' id='pp-content-tab-comments'>{$this->ipsclass->lang['m_tab_comments']}</div>

<div class='pp-taboff' id='pp-content-tab-friends'>{$this->ipsclass->lang['m_tab_friends']}</div>

<foreach="$tabs as $tab">

<div class='pp-taboff' id='pp-content-tab-{$tab['plugin_key']}'>{$tab['_lang']}</div>

</foreach>

Save the template bit and repeat for each skin.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×