I’m having a channel:entries issue with one of my sites. This happens spuraticaly.
I created a channel called ‘projects’.
When viewing a single project entry, for example /projects/entry_title, the page lists out all project entries rather than the single entry.
I use a conditional statement to determine wether to display html for a single entry or multiple entries:
{exp:channel:entries channel="projects" status="published" disable="member_data|pagination" }
{if total_results > 1 || segment_2 == ""}
// display multiple entries
{if:else}
// display single entry
{/if}I am caching the template file, clearing the cache resolves the issue. However, after some time the issue crawls back up.
Any ideas, suggestions are much appreciated.