Login     Sign up
few quick questions
Jim Teja (@jimteja)
Join date: Sep 29th 2010
Community posts: 10
View Profile
Send Message

1.) On the profile view, it appears to list all of your friends. There's a "see all" button, but it appears to list them all anyway. Is there a way to cut the default listing off at like 9, then the "see all" button would expand the list?

2.) On the "home" page, the live feed has 5 entries. Is there a way to expand that to 8 so it takes up more space?

3.) Is there a way to allow users to post links in their status or comments?

4.) On the "browse" page, it lists 12 users at a time. This looks very awkward since it has one row of 9 and a second row of 3. Clicking the "more" button will just show another group of 12. Is there a way to make this show groupings of 18 instead so it's even?

Thanks in advance for your help guys

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

question 2 you find explained here:

[url]http://community.jcow.net/forums/viewthread/540[/url]

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

goto my/config.php

change line

[code]
$num_per_page = 12;
[/code]

177 months ago
Jim Teja (@jimteja)
Join date: Sep 29th 2010
Community posts: 10
View Profile
Send Message

Thanks for the quick response. For number 2, making that change affected the dashboard, but not the home page. I'm referring to the page that doesn't have the quick comment, but just has 5 entries that slide down every few seconds and says "community activities".

Actually, another solution would just be making the dashboard the home screen. If this is easier, I'm fine with that also.

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

you mean the ticker on the homepage. It is four not five.

you find in the page.tpl.php of your theme.

[code]
<script type="text/javascript" src="'.uhome().'/js/jquery.vtricker.js"></script>
<script>
jQuery(document).ready(function($) {
$(\'#recent_activites\').vTicker({
speed: 800,
pause: 5000,
showItems: 4,
animation: \'fade\',
mousePause: false,
height: 350,
direction: \'down\'
});
});
</script>
[/code]

177 months ago
Jim Teja (@jimteja)
Join date: Sep 29th 2010
Community posts: 10
View Profile
Send Message

Found it. Thank you!

177 months ago