Login     Sign up
Reducing Friend List
jacky loon (@jack41)
Join date: Nov 9th 2010
Community posts: 87
View Profile
Send Message

How to reduce the number of friends on a profile which is 30 as default? Can we limit it to 9 on a profile? If yes, How?

173 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

u.module.php --> function show_sidebar

this line

[code]
// friends
$res = sql_query("SELECT u.* FROM ".tb()."friends as f left join ".tb()."accounts as u on u.id=f.fid where f.uid={$owner['id']} ".dbhold('f')." ORDER BY f.created DESC LIMIT 30");
[/code]

change LIMIT 30 to something else

173 months ago
jacky loon (@jack41)
Join date: Nov 9th 2010
Community posts: 87
View Profile
Send Message

Yesssssssss its done. You are great falcon

173 months ago
weh team (@friendsunity)
Join date: Apr 18th 2010
Community posts: 67
View Profile
Send Message

hello...

is it the code for make limit friends list number in profile???

or is it the code for make limit for add as friend ??

173 months ago
jacky loon (@jack41)
Join date: Nov 9th 2010
Community posts: 87
View Profile
Send Message

The first one.

173 months ago
weh team (@friendsunity)
Join date: Apr 18th 2010
Community posts: 67
View Profile
Send Message

dhool.. thx ya

173 months ago
sinici (@sinici)
Join date: Nov 26th 2010
Community posts: 24
View Profile
Send Message

[quote=falcone]u.module.php --> function show_sidebar

this line

[code]
// friends
$res = sql_query("SELECT u.* FROM ".tb()."friends as f left join ".tb()."accounts as u on u.id=f.fid where f.uid={$owner['id']} ".dbhold('f')." ORDER BY f.created DESC LIMIT 30");
[/code]

change LIMIT 30 to something else [/quote]

thanks master

172 months ago