Big picture - I am trying to list all of the entries for one channel in the sidebar in a ul.. this works on parent pages, but not child pages.
Nitty gritty (in case big picture was too big) - I have a ‘parent’ page that lists out faculty members with excerpts, basic info, etc. in the main column… In the sidebar I’ve created a jquery slidetoggle thingy that lists out only the names (last, first, middle) of everyone in the main column. Everything shows up fine in the main page, and if I click on the names in the sidebar it goes to the correct child page…. BUT when I am on the child page, the sidebar list only shows the name of the current entry, not a list of everyone like on the previous page.
I am embedding the same code on both pages:
<ul>
{exp:channel:entries channel="research-faculty"}
<li><a href="http://{title_permalink=%27research-faculty/research-faculty-profile%27}" title="">{lastname}, {firstname} {middlename}</a></li>
{/exp:channel:entries}
</ul>Any thoughts?