I’m trying to achieve the following structure:
Food > Lunch > [category] > [product]
Where:
Food is a template group
Lunch is a template displaying a category list
[category] is the category clicked on by the user which displays a list off all products in that category
[product] is the individual product view page.
I’ve got it working up to the point of view of the [category] page showing products within the clicked on category but I’m just not sure how to append the product title to the end of the URL and have it view in a different template for the individual product view. I’m aiming for the following URL schema for example when viewing the individual product page:
/food/lunch/category/sandwiches/club-sandwich/
From the category page what tag do I use in the anchor links to display the individual product page?