Kunena 7.0.4 Released

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

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
15 years 3 months ago #83010 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
15 years 3 months ago #83032 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
15 years 3 months ago #83158 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.220 seconds