Content based on user ID

Permalink
I am using the Member Profile feature and am wondering if it is possible for each user to add content to their profile page. I'm hoping to have each member add news to their profile page that will be news related only to them. I can most likely do something with a blog engine to just aggregate posts in that user's category and allow the users to be blog contributors.

I see that you can use advanced permissions to limit group access/permissions, but does that function at an individual member level?

FatTony1952
 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
You could use something like this in your profile page:

<?php 
$userID = $profile->getUserID();     
$a = new Area('News Area '.$userID);
$a->display($c);
?>


Rony
PortobellaRain replied on at Permalink Reply
PortobellaRain
did this prove successful?

I have used this approach but am finding that only one user can edit their page at a time.

did you find a way of sorting this?