- Posts: 9
- Thank you received: 0
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
Eröffnet dazu bitte ein eigenes neues Thema.
Question Profilbox in Beiträgen
- Joomla_Lover
-
Topic Author
- Offline
- New Member
-
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.
Please Log in or Create an account to join the conversation.
- Joomla_Lover
-
Topic Author
- Offline
- New Member
-
- Posts: 9
- Thank you received: 0
Ä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:
ändern in<li class="kpost-username">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->escape($this->username) ); ?>
</li>
Zeile 23:<div class="kpost-username">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->escape($this->username) ); ?>
</div>
ändern in<li class="kpost-usertype">
<span class = "kmsgusertype">( <?php echo $this->escape($this->usertype) ?> )</span>
</li>
Zeile 28:<div class="kpost-usertype">
<span class = "kmsgusertype">( <?php echo $this->escape($this->usertype) ?> )</span>
</div>
ändern in<li class="kpost-avatar">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->avatar ); ?>
</li>
Zeile 34:<div class="kpost-avatar">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->avatar ); ?>
</div>
<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:
ändern in<li class="kpost-userrank">
<?php echo $this->escape($this->userranktitle) ?>
</li>
Zeile 42:<div class="kpost-userrank">
<?php echo $this->escape($this->userranktitle) ?>
</div>
ändern in<li class="kpost-userrank-img">
<?php echo $this->userrankimage ?>
</li>
Zeile 48:<div class="kpost-userrank-img">
<?php echo $this->userrankimage ?>
</div>
ändern in<li class="kpost-personal">
<?php echo KunenaParser::parseText($this->personaltext) ?>
</li>
Zeile 53:<div class="kpost-personal">
<?php echo KunenaParser::parseText($this->personaltext) ?>
</div>
ändern in<li class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') .' '. intval($this->userposts); ?></li>
<div class="kpost-userposts"><?php echo JText::_('COM_KUNENA_POSTS') .' '. intval($this->userposts); ?></div>
Zeile 56:
ändern in<li class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') .' '. intval($this->userpoints); ?></li>
<div class="kpost-userposts"><?php echo JText::_('COM_KUNENA_AUP_POINTS') .' '. intval($this->userpoints); ?></div>
Zeile 59:
ändern in<li class="kpost-karma">
<span class="kmsgkarma">
<?php echo $this->userkarma ?>
</span>
</li>
<div class="kpost-karma">
<span class="kmsgkarma">
<?php echo $this->userkarma ?>
</span>
</div>
Zeile 66:
ändern in<li class="kpost-usermedals">
<?php foreach ( $this->usermedals as $medal ) : ?>
<?php echo $medal; ?>
<?php endforeach ?>
</li>
Zeile 73:<div class="kpost-usermedals">
<?php foreach ( $this->usermedals as $medal ) : ?>
<?php echo $medal; ?>
<?php endforeach ?>
</div>
ändern in<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>
<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.