- Posts: 13
- 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
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
Question Edit the Order of the "kprofile-left" user info table
14 years 2 months ago #119545
by jcrimmel
Edit the Order of the "kprofile-left" user info table was created by jcrimmel
Please Log in or Create an account to join the conversation.
- Jiminimonka
-
- Offline
- Elite Member
-
- YBAS!
14 years 2 months ago #119554
by Jiminimonka
Replied by Jiminimonka on topic Re: Edit the Order of the "kprofile-left" user info table
Hi jcrimmel,
Firebug for Firefox will allow you to find all the elements of a web page easily. You can even test it out before you make the actual changes on your site for real.
Firebug for Firefox will allow you to find all the elements of a web page easily. You can even test it out before you make the actual changes on your site for real.
Please Log in or Create an account to join the conversation.
14 years 2 months ago #119558
by jcrimmel
Replied by jcrimmel on topic Re: Edit the Order of the "kprofile-left" user info table
Thanks. I am using Firebug and can find the CSS elements to adjust the padding and other display options, but I can't find the actual source code that produces the table. Maybe I'm just not looking close enough because this should be easy. I have looked in many of the .php files but I can't nail it down.
Jason
Jason
Please Log in or Create an account to join the conversation.
14 years 2 months ago #119564
by jcrimmel
Replied by jcrimmel on topic Re: Edit the Order of the "kprofile-left" user info table
I found it...
To edit the order of these items you need to look in
components/com_kunena/template/default/view/profile.vertical.php (or profile.horizontal.php depending on your layout)
For example: To move the personal text (about me) above the avatar you need to find the following
and cut / copy the above code just before the following code for the avatar
To edit the order of these items you need to look in
components/com_kunena/template/default/view/profile.vertical.php (or profile.horizontal.php depending on your layout)
For example: To move the personal text (about me) above the avatar you need to find the following
Code:
<?php if ($this->personaltext) : ?>
<li class="kpost-personal">
<?php echo KunenaParser::parseText($this->personaltext) ?>
</li>
<?php endif ?>
and cut / copy the above code just before the following code for the avatar
Code:
<?php if ($this->avatar) : ?>
<li class="kpost-avatar">
<?php echo CKunenaLink::GetProfileLink ( intval($this->profile->userid), $this->avatar ); ?>
</li>
<?php endif; ?>
BE SURE TO BACKUP YOUR ORIGINAL PHP FILE BEFORE UPLOADING ANY EDITS
Please Log in or Create an account to join the conversation.
Time to create page: 0.243 seconds