Any other suggestions on this?
Currently, I have a main media page that on the right sidebar has a list of all my categories with links to the “browse” template, where the entries are dynamically limited by the URL:
<div id="mediarightsidebar">
<h3>Browse By Category</h3>
<p> <div id="categorycontainer"><br />
{exp:channel:categories style="nested" channel="mediacontent"}<br />
<a href="http://media/browse/C{category_id}/">{category_name}</a><br />
{/exp:channel:categories}<br />
</div><!-- END CATEGORY CONTAINER --><br />
</div><!-- END MEDIA RIGHT SIDEBAR -->
Here’s my entire {media/browse} template code. Inline styles… gross I know. I’m working on it.
I’m using
{exp:channel:categories show="{segment_3}"}{category_name}{/exp:channel:categories}
to try to display the category name associated with the ID in URL {segment_3}.
Originally, I had thought that it wasn’t displaying the name because of the “C” that preceded the category ID in {segment_3}, but even when I remove it from the URL, it won’t display the name correctly…