Profile friend list

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in the Customisations Database.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

NOTICE: This forum is only for the announcement of new releases and/or updates of MODs. Any MOD support should be obtained through the Customisations Database in the support area designated for each MOD.

A direct link to support for each MOD is in the first post of the respective topic.
Locked
Extensions Robot
Extensions Robot
Extensions Robot
Posts: 29216
Joined: Sat Aug 16, 2003 7:36 am

Profile friend list

Post by Extensions Robot »

Modification name: Profile friend list
Author: platinum_2007
Modification description: Ads a friend list to user profiles
Modification version: 1.3.0
Tested on phpBB version: 3.0.12

Download file: friends_list_1.3.0.zip
File size: 43.76 KiB

Modification overview page: View

The phpBB Team is not responsible nor required to provide support for this modification. By installing this MOD, you acknowledge that the phpBB Support Team or phpBB Extension Customisations Team may not be able to provide support.

-->Modification support<--
Last edited by Extensions Robot on Mon Sep 19, 2022 7:33 pm, edited 14 times in total.
(this is a non-active account manager for the phpBB Extension Customisations Team)
User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 18282
Joined: Thu Jan 06, 2005 1:30 pm
Location: Fishkill, NY
Name: David Colón
Contact:

Profile friend list

Post by DavidIQ »

Modification validated/released

Notes:
tumba25 wrote:

Code: Select all

while($row_av = $db->sql_fetchrow( $result )) {
Should follow the coding guidelines.
A_O_C wrote:A few XHTML w3c validation errors.
These are not critical but you should consider them on any future releases.
Apply to become a Jr. Extension Validator
My extensions | In need of phpBB services? | Was I helpful today?
No unsolicited PMs unless you're planning on asking for paid help.
platinum_2007
Registered User
Posts: 1101
Joined: Tue Jul 22, 2008 2:47 am
Location: Nova Scotia, Canada

Profile friend list

Post by platinum_2007 »

Thanks for the validation mod team :)

SUBSILVER2 INSTRUCTIONS

in style/subsilver2/template/memberlist_view.html

FIND

Code: Select all

	<!-- IF SIGNATURE -->
BEFORE-ADD

Code: Select all

 <tr>
             <td class="cat" colspan="2" align="center"><h4>{L_FRIEND_LIST}</h4></td>
         </tr>
          <tr>
             <td class="row1" colspan="2"><div class="postbody" style="padding: 10px;">
             	<!-- BEGIN fri -->
                    <a class="thumbnail" href="{fri.AV_LINK}" style="text-decoration:none">
                        <span>
                    <!-- IF fri.USER_COLOR --><b style="color:#{fri.USER_COLOR}"> <!-- ELSE --><b style="color:#000;"><!-- ENDIF -->{fri.USERNAME}</b><br /><!-- IF fri.FRI_AV -->{fri.FRI_AV}</span>{fri.FRI_AV_THUMB} <!-- ELSE --> <img src="images/no_avatar.gif" alt="noavatar" /></span><img src="images/no_avatar.gif" alt="noavatar"  width="{fri.WIDTH}" /><!-- ENDIF -->
                    </a>
                    <!-- END fri -->
                </div>
                <ul class="linklist">
   {TOTAL_FRIENDS} &bull; <!-- IF FRINATION --><a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER_F}</a> &bull; <span>{FRINATION}</span><!-- ELSE -->{PAGE_NUMBER_F}<!-- ENDIF -->

                </td>
              </tr>
in styles/subsilver2/theme/stylesheet.caa

FIND

Code: Select all

.username-coloured {
	font-weight: bold;
}
AFTER-ADD

Code: Select all

/**
 * @package styles
 * @version $Id: memberlist_avatar.css 45 2007-09-10 04:49:51Z Highway of Life $
 * @copyright (c) 2007 David Lewis (Highway of Life) - http://startrekguide.com
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 ---------------------------------------- */
.thumbnail {
	z-index: 0;
	position:relative;
}

a.thumbnail:hover {
	background-color: transparent;
	z-index: 50;
}

.thumbnail span {
	position: absolute;
	background: #e0e5e9 url("./images/cellpic1.gif") repeat-x;
	padding: 4px;
	border: 1px solid #a9b8c2;
	left: 0px;
	display: none;
	color: #FFF;
	text-decoration: none;
}

.thumbnail span img {
	border-width: 0;
	padding: 2px;
}

a.thumbnail:hover span {
	position:absolute;
	display:block;
	top: 20px;
	left: 7px;
}
Last edited by platinum_2007 on Sun Aug 02, 2009 2:07 pm, edited 3 times in total.
User avatar
keith10456
Registered User
Posts: 2315
Joined: Thu Feb 24, 2005 6:55 pm
Contact:

Re: Profile friend list

Post by keith10456 »

Congrats on the validation :D
User avatar
phreakwars
Registered User
Posts: 242
Joined: Thu Feb 22, 2007 4:57 am
Location: Polaris Industries

Re: Profile friend list

Post by phreakwars »

Ditto.

Nice mod
.
.
MODS by me: Default Topic Icon
thesecret
Registered User
Posts: 270
Joined: Mon Sep 29, 2008 12:13 pm

Re: Profile friend list

Post by thesecret »

finally validated
that's great :D
User avatar
Ashley.S.
Registered User
Posts: 469
Joined: Mon Aug 04, 2008 6:01 pm
Location: Falmouth, Cornwall, UK
Name: Ashley .S.
Contact:

Re: Profile friend list

Post by Ashley.S. »

congratulations on the validation
Regards,
-Ashley.S. [ PurephpBB Founder ]
TandyServices
Registered User
Posts: 10
Joined: Thu May 28, 2009 12:13 am

Re: Profile friend list

Post by TandyServices »

Hi,

I've installed this mod, but there's nothing showing in the friendslists.. It's just empty. I have no errors or anything. The avatars are not the problem, I have an avatar and it's still not showing up. I purged the cache and everything. Any suggestions? Would like this to work :)
platinum_2007
Registered User
Posts: 1101
Joined: Tue Jul 22, 2008 2:47 am
Location: Nova Scotia, Canada

Re: Profile friend list

Post by platinum_2007 »

TandyServices wrote:Hi,

I've installed this mod, but there's nothing showing in the friendslists.. It's just empty. I have no errors or anything. The avatars are not the problem, I have an avatar and it's still not showing up. I purged the cache and everything. Any suggestions? Would like this to work :)
Are you sure you have friends added? and did you do the template edits to a custom style other then prosilver if you are using one?
User avatar
ijhtio
Registered User
Posts: 150
Joined: Sat Feb 28, 2009 10:09 pm
Contact:

Re: Profile friend list

Post by ijhtio »

really nice mod....thanks a lot platinum_2007....
i will try it out on my board :)
regards,
ijhtio
User avatar
Ashley.S.
Registered User
Posts: 469
Joined: Mon Aug 04, 2008 6:01 pm
Location: Falmouth, Cornwall, UK
Name: Ashley .S.
Contact:

Re: Profile friend list

Post by Ashley.S. »

platinum_2007 wrote:
TandyServices wrote:Hi,

I've installed this mod, but there's nothing showing in the friendslists.. It's just empty. I have no errors or anything. The avatars are not the problem, I have an avatar and it's still not showing up. I purged the cache and everything. Any suggestions? Would like this to work :)
Are you sure you have friends added? and did you do the template edits to a custom style other then prosilver if you are using one?
I have the same problem, I have 20+ friends, yet only 6 show because they have avatars. If my friends don't have an avatar and have the coded in universal no avatar mod, they don't show in the list. Yet as soon as I remove the universal no avatar mod code, they all show up fine :?
Regards,
-Ashley.S. [ PurephpBB Founder ]
User avatar
vwrmic
Registered User
Posts: 175
Joined: Mon Apr 07, 2008 11:06 pm
Location: Inside my server!

Re: Profile friend list

Post by vwrmic »

Thanks for the mod. I had a few problems, mainly due to other mods being installed. I noticed part of this is based of Highway of Life's modification for memberlist avatars. If you install this mod, it will slightly break his mod. Here's how you fix it.

When you have both mods fully installed. Do the following:

In Styles/prosilver/theme/memberlist_avatar.css
Find:

Code: Select all

a.thumbnail:hover span {
	position:absolute;
	display:block;
	top: 20px;
	left: 7px;
}
Add After:

Code: Select all

.memberlist-avatar {
	width: 22px;
}
In Styles/prosilver/theme/stylesheet.css
Find:

Code: Select all

@import url("colours.css");
Now if you followed the installation of this mod correctly, you will notice you have two instances of this:

Code: Select all

@import url("memberlist_avatar.css");
Make sure you only have one instance of that in your file.

Save, upload, refresh your theme.

Job done. :)
User avatar
vwrmic
Registered User
Posts: 175
Joined: Mon Apr 07, 2008 11:06 pm
Location: Inside my server!

Re: Profile friend list

Post by vwrmic »

Just an issue I found.

When changing options in ACP for the mod. This shows as the logged action:

Code: Select all

{LOG CONFIG PROFILEFRIENDS}
Nothing major, just thought I would let you know. :)
TandyServices
Registered User
Posts: 10
Joined: Thu May 28, 2009 12:13 am

Re: Profile friend list

Post by TandyServices »

platinum_2007 wrote:
TandyServices wrote:Hi,

I've installed this mod, but there's nothing showing in the friendslists.. It's just empty. I have no errors or anything. The avatars are not the problem, I have an avatar and it's still not showing up. I purged the cache and everything. Any suggestions? Would like this to work :)
Are you sure you have friends added? and did you do the template edits to a custom style other then prosilver if you are using one?
Yes, I have friends added, I even threw em out and added them again. Then I also tried using a new avatar, didn't work either. We now have a custom style installed, in which we tried too, but when I posted this I was still using prosilver.
platinum_2007
Registered User
Posts: 1101
Joined: Tue Jul 22, 2008 2:47 am
Location: Nova Scotia, Canada

Re: Profile friend list

Post by platinum_2007 »

Are you using the Universal no Avatar mod?
Locked

Return to “[3.0.x] MOD Database Releases”