Hello. I’m having an issue with creating path names that make sense. I think it’s just the way I’ve created my template groups but I’m not sure. Perhaps this will be obvious to someone with more experience.
Below are the three paths that are created when you navigate to the Cheetah Safari page. Cheetah Safari is a trip available under Eastern Africa which is listed under Africa.
Here’s what I have currently:
http://localhost:8888/bigplanet_test/continent/africa
http://localhost:8888/bigplanet_test/continent/country/eastern-africa
http://localhost:8888/bigplanet_test/continent/trip/cheetah-safari
What I would rather display is this:
http://localhost:8888/bigplanet_test/africa
http://localhost:8888/bigplanet_test/africa/eastern-africa
http://localhost:8888/bigplanet_test/africa/eastern-africa/cheetah-safari
I’m using related entries to pull in the countries and trips.
Here’s some sample code that I have in the index page of the Continent template group:
{exp:channel:entries channel="continents" limit="1"}
<h1>{title}</h1>
{contient_description}
Countries
<ul>
{related_countries}
<li>{title}</li>
{/related_countries}
</ul>
{/exp:channel:entries}
Is this an issue that’s handled at the template level or is it category related? Excuse me if this is an obvious noob issue as I’m still trying to wrap my head around EE.
Thanks!