I am working on a members area where I am creating an admin area where an admin can view all of the members and manage every entry that the member has created. I want the admin to be able to manage the member’s entries as if they were logged in as the member, but without having to log in as each individual member. So they have a page that lists every member and then a link to all the entries for each member. So here is my question…
Is there a problem with using the Username instead of the Author_ID in the weblog entries tag?
I’m finding that if I use the author_id in the weblog on the receiving page, it isn’t grabbing that member’s id and displaying their entries. It just gives me a blank area where the entries should be. I’ve turned on template debugging and I see that it says something like author_id=“2” but that authors entries don’t show up.
Here is the link code I was trying to use in the <a> tag:
"{path="admin/manage_member_clients"}{member_id}"Here is the weblog entries tag I was trying to use on the receiving page:
{exp:weblog:entries weblog="manage_clients" author_id="{segment_3}" status="Active|Open|Inactive" limit="25" disable="categories|category_fields|trackbacks"}
However, if I use username in the weblog, it is pulling in only that member’s entries like its suppose to.
Here is the link code I’m using in the a tag:
"{path="admin/manage_member_clients"}{username}"Here is the weblog entries tag I’m currently using on the receiving page:
{exp:weblog:entries weblog="manage_clients" username="{segment_3}" status="Active|Open|Inactive" limit="25" disable="categories|category_fields|trackbacks"}Will using the username give consistent results when we start adding 300 - 400 members to this site? Or will it cause problems that I don’t forsee?
Thank you,
Daniel Boswell