By Underfunded on
I am running Drupal 6.4.
I created a page to create a list of blogs on the site using the last set of code found at:
http://drupal.org/node/83615
Authenticated users are able to view the page and information properly but anonymous users only see the title but none of the content.
Any thoughts?
Comments
If it's something which
If it's something which authenticated users are allowed to do but anonymous users aren't it's probably a setting in access control
Yes, that code snippet is
Yes, that code snippet is wrapped in
which only shows that content if the user is logged in. Remove that wrapper to allow all users to see it, unless you restrict block visibility.
Thank you! Worked like a
Thank you! Worked like a charm once I removed the wrapper.