Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

Themen, die in diesen Bereich verschoben wurden, gelten allgemein als beendet. Falls es dazu noch zusätzliche Fragen gibt, können diese zwar noch gestellt werden, aber diese alten Themen sollten auf keinen Fall wieder auferstehen, um neue Probleme zu erörtern.
Eröffnet dazu bitte ein eigenes neues Thema.

Question Profilbox in Beiträgen

More
13 years 3 months ago - 13 years 3 months ago #1 by Joomla_Lover
Hallo an alle.

Ich habe ein Problem mit der Profilbox in den Beiträgen.

Mein System:

Joomla 1.5.22
Cbe 1.4.12
Kunena 1.6.1

Erstens sind in den Beiträgen die Profilboxen auf der linken Seite. Diese waren mal rechts.

Zudem sind in der Profilbox in jeder Reihe Punkte wo ich meine das diese nicht dort hingehören und zudem auch nicht wirklich schön ausschauen.

Siehe Bild:



Über eine lösung würde ich mich freuen und vieleicht auch darüber das ich die Profilbox wieder auf die rechte seite bekomme.

Mfg Mike
Last edit: 13 years 3 months ago by Joomla_Lover.

Please Log in or Create an account to join the conversation.

More
13 years 3 months ago #2 by rich
Replied by rich on topic Aw: Profilbox in Beiträgen
Hallo Joomla_Lover,

So viel ich weiß, lässt sich Cbe noch? nicht in Kunena integrieren.
Benutzt du das Kunena von hier, oder das angepasste von der Cbe Seite? Ich wusste es bis vor kurzem selbst nicht, dass es dort für den Cbe ein modifiziertes Kunena gibt.
www.kunena.org/forum/36-german/81410-signatur#81508
Diese Benutzer hatte ebenfalls Probleme mit Kunena und Cbe.

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #3 by Joomla_Lover
Erst mal Danke für Deine Antwort.

Ich benutze das Kunena von CBE und bei mir läuft alle am Schnürchen. ^^

Einzger Makel ist halt die Profilbox wenn Ihr mal schaut.

Erstens ist es links anstatt rechts und zweitens ärgern mich die kleinen Punkte links in der Profilbox.

Trotzdem wäre ich um weitere Hilfe erfreit.

Mfg Mike

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago - 13 years 2 months ago #4 by rich
Replied by rich on topic Aw: Profilbox in Beiträgen
Die Punkte sehen für mich aus, als ob die Einträge als Liste dargestellt werden. Da müsstest du schauen, ob du in der CSS diesbezüglich etwas findest.
In Kunena kannst du in der "Administration > Kunena > Templates > Dein Kunena Template" die Position des Profil auswählen.
Last edit: 13 years 2 months ago by rich.
The following user(s) said Thank You: Joomla_Lover

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #5 by Charles
Replied by Charles on topic Re: Profilbox in Beiträgen
Ich hab auch ein Profilbox-Problem. Wie kann ich diese schmaler machen?! Per CSS (und wenn ja, wo) oder muss ich PHP-Dateien anpassen?

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago - 13 years 2 months ago #6 by eWinG
Replied by eWinG on topic Re: Profilbox in Beiträgen
Probier mal die min-width: in der Klasse #Kunena td.kprofile-right anzupassen.

In der .../components/com_kunena/template/default/css/kunena.forum-min.css
Last edit: 13 years 2 months ago by eWinG.

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #7 by Joomla_Lover
Nabend allerseits.

Vielen Dank an "rich". Mit Deiner Hilfe hat sich das Problem ganz von selber mit der Umsetzung von links nach rechts gelöst.

Dieser Thread kann hiermit als gelöst und closed gesetzt werden.

Mfg Mike

P.S.: Kann nur noch mal sagen, das viele Ihre Freizeit opfern um anderen zu helfen. Dieses sollte von jedem mit Geduld und Lob anerkennat werden!!!

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #8 by Charles
Replied by Charles on topic Re: Profilbox in Beiträgen
Kann mich Joomla_Lover nur anschließen!! "Problem" gelöst durch den Tipp von eWinG und das super schnell - DANKE!

Please Log in or Create an account to join the conversation.

More
13 years 2 months ago #9 by Joomla_Lover
Noch mal wegen dem Profil mit den Punkten.

Ändern müsste Ihr folgende Datei, damit Ihr in der Profilbox links oder rechts keine Punkte zu sehen bekommt.

Datei: com_kunena/template/default/view/profile.vertical.php öffnen

Zeile 19:

<li class="kpost-username">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->escape($this->username) ); ?>
</li>

ändern in

<div class="kpost-username">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->escape($this->username) ); ?>
</div>

Zeile 23:

<li class="kpost-usertype">
<span class = "kmsgusertype">( <?php echo $this->escape($this->usertype) ?> )</span>
</li>

ändern in

<div class="kpost-usertype">
<span class = "kmsgusertype">( <?php echo $this->escape($this->usertype) ?> )</span>
</div>

Zeile 28:

<li class="kpost-avatar">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->avatar ); ?>
</li>

ändern in

<div class="kpost-avatar">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->avatar ); ?>
</div>

Zeile 34:

<li><span class="kicon-button kbuttononline-<?php echo $this->profile->isOnline(true) ?>"><span class="online-<?php echo $this->profile->isOnline(true) ?>"><span><?php echo $this->profile->isOnline() ? JText::_('COM_KUNENA_ONLINE') : JText::_('COM_KUNENA_OFFLINE'); ?></span></span></span></li>


ändern in

<div><span class="kicon-button kbuttononline-<?php echo $this->profile->isOnline(true) ?>"><span class="online-<?php echo $this->profile->isOnline(true) ?>"><span><?php echo $this->profile->isOnline() ? JText::_('COM_KUNENA_ONLINE') : JText::_('COM_KUNENA_OFFLINE'); ?></span></span></span></div>


Zeile 37:

<li class="kpost-userrank">
<?php echo $this->escape($this->userranktitle) ?>
</li>

ändern in

<div class="kpost-userrank">
<?php echo $this->escape($this->userranktitle) ?>
</div>

Zeile 42:

<li class="kpost-userrank-img">
<?php echo $this->userrankimage ?>
</li>

ändern in

<div class="kpost-userrank-img">
<?php echo $this->userrankimage ?>
</div>

Zeile 48:

<li class="kpost-personal">
<?php echo KunenaParser::parseText($this->personaltext) ?>
</li>

ändern in

<div class="kpost-personal">
<?php echo KunenaParser::parseText($this->personaltext) ?>
</div>

Zeile 53:

<li class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') .' '. intval($this->userposts); ?></li>

ändern in

<div class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') .' '. intval($this->userposts); ?></div>


Zeile 56:

<li class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') .' '. intval($this->userpoints); ?></li>

ändern in

<div class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') .' '. intval($this->userpoints); ?></div>


Zeile 59:

<li class="kpost-karma">
<span class="kmsgkarma">
<?php echo $this->userkarma ?>
</span>
</li>

ändern in

<div class="kpost-karma">
<span class="kmsgkarma">
<?php echo $this->userkarma ?>
</span>
</div>


Zeile 66:

<li class="kpost-usermedals">
<?php foreach ( $this->usermedals as $medal ) : ?>
<?php echo $medal; ?>
<?php endforeach ?>
</li>

ändern in

<div class="kpost-usermedals">
<?php foreach ( $this->usermedals as $medal ) : ?>
<?php echo $medal; ?>
<?php endforeach ?>
</div>

Zeile 73:

<li class="kpost-smallicons">
<?php echo $this->profile->profileIcon('gender'); ?>
<?php echo $this->profile->profileIcon('birthdate'); ?>
<?php echo $this->profile->profileIcon('location'); ?>
<?php echo $this->profile->profileIcon('website'); ?>
<?php echo $this->profile->profileIcon('private'); ?>
<?php echo $this->profile->profileIcon('email'); ?>
</li>

ändern in

<div class="kpost-smallicons">
<?php echo $this->profile->profileIcon('gender'); ?>
<?php echo $this->profile->profileIcon('birthdate'); ?>
<?php echo $this->profile->profileIcon('location'); ?>
<?php echo $this->profile->profileIcon('website'); ?>
<?php echo $this->profile->profileIcon('private'); ?>
<?php echo $this->profile->profileIcon('email'); ?>
</div>


Somit habt Ihr weder rechts noch links oder oben und unten keine Punkte mehr in der Profilbox.

Please Log in or Create an account to join the conversation.

Time to create page: 0.552 seconds