We want to create weblogs of information on members. But I want the ability to pull up a member and have all weblogs tagged with his name to appear on his page only. Is that possible? Did I explain that without confusing you?
I would imagine something like this where the username is being passed through the URL in segment 3. Using Solspace’s user module I came up with something like this but it’s not working. Is there a way in EE’s native functionality to accomplish this?
When I select John Doe from a jump menu, it goes to a page with this code and should pull in only weblog information associated with John Doe.
URL: <a href="http://www.mysite.com/index.php/site/memberresults/John">http://www.mysite.com/index.php/site/memberresults/John</a> Doe
{exp:weblog:entries weblog="memberhistory" }
{exp:user:stats username="{segment_3}"}
{entry_date format="%F %j, %Y "}
{title}
{body}
{/exp:user:stats}
{/exp:weblog:entries }