Hi, I’ve been a Codeigniter developer for years, am new to ExpressionEngine.
I’m working on my first EE site. I’ve set up a channel called Galleries, which will be showing images organized into galleries. I have set up a bunch of categories for it, about 8 or 9 categories thus far. I’ve got everything assigned properly, or so I think, and everything else on my site is thus far working fine. Really, this isn’t hard software to use, but this category thing isn’t working at all.
The code below, while the url changes accordingly, the h3 tag within the category_header tag shows no output - this code doesn’t work. I pulled this right out of tutorials. what am I doing wrong here? In Global Channel Preferences I’ve got it set to use URL Titles in links, my restricted trigger word is ‘categories.” Any ideas? I feel like a moron.
{exp:channel:category_heading channel="galleries"}
<h3>{category_name}</h3><p> <br />
{/exp:channel:category_heading}</p>
<p><br />
<ul></p>
<p>{exp:channel:categories channel="galleries"}</p>
<p><a href="http://{site_url}main.php/art/{category_name}">{category_name}</a></p>
<p>{/exp:channel:categories}</p>
<p></ul>It doesn’t work if I subsitute “category_url_title” for category name either.
Luke