Activity streams |
| |||
How to increase profile Activity streams display number.. When go to someone's profile it only display his/her 5 streams how to increase this number..
|
| |||
modules/dashboard/dashboard.php function index $lblocks[] = $this->newsfeed(5); maybe a good idea for a request to make this a variable you can change in the admin area
|
| |||
Thanks.. For. eg.. you visit this link... [url]http://community.jcow.net/u/abhimanyusharma003[/url] you only find 5 streams there..
|
| |||
modules/u/u.php function index line $output .= stream_get($profile['id'],5);
|
| |||
for the comment little bit lower $output .= profile_comment_get($profile['id'],5);
|
| |||
Ya it's works good.. But when you click on "see more" it generate(display) same stream two time..
|
| |||
i think you need to change some other things to this is the comment display
[/code] if your stream = 10, every 5 in the code needs to be 10 and the 4 needs to be 9 (=10-1) same thing for the stream_display
|
| |||
Thanks work's great..!!
|