- Posts: 74
- 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
Question Change of header avatar position
Please Log in or Create an account to join the conversation.
Change order of the two <td>'s.
Please Log in or Create an account to join the conversation.
Could you please insert a part of the code you are talking about between the tds?
Thanks again
Please Log in or Create an account to join the conversation.
original:
<td class = "td-1 fbm" align="left" width="5%">
<?php echo CKunenaLink::GetProfileLink($fbConfig, $my->id, $jr_avatar);?>
</td>
<td valign = "top" class = "td-2 fbm fb_profileboxcnt" align="left">
<?php echo _PROFILEBOX_WELCOME; ?>, <b><?php echo $jr_username; ?></b>
<br />
<a href = "<?php echo $jr_latestpost ; ?>"><?php
echo _PROFILEBOX_SHOW_LATEST_POSTS; ?> </a> | <?php echo $jr_profilelink; ?> | <a href = "<?php echo $logoutlink;?>"><?php echo _PROFILEBOX_LOGOUT; ?></a>
<?php
$user_fields = @explode(',', $fbConfig->annmodid);
if (in_array($my->id, $user_fields) || $my->usertype == 'Administrator' || $my->usertype == 'Super Administrator') {
$is_editor = true;
}
else {
$is_editor = false;
}
if ($is_editor) {
$annlink = 'index.php?option=com_kunena&func=announcement&do=show'.KUNENA_COMPONENT_ITEMID_SUFFIX;
?>
| <a href = "<?php echo $annlink;?>"><?php echo _ANN_ANNOUNCEMENTS; ?> </a>
<?php } ?>
</td>
changed:
<td valign = "top" class = "td-2 fbm fb_profileboxcnt" align="left">
<?php echo _PROFILEBOX_WELCOME; ?>, <b><?php echo $jr_username; ?></b>
<br />
<a href = "<?php echo $jr_latestpost ; ?>"><?php
echo _PROFILEBOX_SHOW_LATEST_POSTS; ?> </a> | <?php echo $jr_profilelink; ?> | <a href = "<?php echo $logoutlink;?>"><?php echo _PROFILEBOX_LOGOUT; ?></a>
<?php
$user_fields = @explode(',', $fbConfig->annmodid);
if (in_array($my->id, $user_fields) || $my->usertype == 'Administrator' || $my->usertype == 'Super Administrator') {
$is_editor = true;
}
else {
$is_editor = false;
}
if ($is_editor) {
$annlink = 'index.php?option=com_kunena&func=announcement&do=show'.KUNENA_COMPONENT_ITEMID_SUFFIX;
?>
| <a href = "<?php echo $annlink;?>"><?php echo _ANN_ANNOUNCEMENTS; ?> </a>
<?php } ?>
</td>
<td class = "td-1 fbm" align="left" width="5%">
<?php echo CKunenaLink::GetProfileLink($fbConfig, $my->id, $jr_avatar);?>
</td>
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.