ExpressionEngine® Answers is a question and answer site for administrators, end users, developers and designers for ExpressionEngine® CMS. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I have this a template that has this code:

<h3 class="futura">General Info</h3>
{exp:channel:entries channel="online_courses" orderby="nav_order" sort="asc" dynamic="no"}
    {sp_left_nav}
    {if item == 'Display on Online Classroom Main'}
        <a href="{title_permalink='online_courses/general'}">{title}</a>
    {/if}
    {/sp_left_nav}
{/exp:channel:entries}
<h3 class="futura">Courses</h3>
{exp:channel:entries channel="courses" orderby="nav_order" sort="asc" dynamic="no"}
    {sp_left_nav}
    {if item == 'Display on Online Classroom Main'}
        <a href="{title_permalink='online_courses'}">{title}</a>
    {/if}
    {/sp_left_nav}
{/exp:channel:entries}

I have a checkbox custom field called sp_left_nav. The entry that I'm viewing has the checkbox for "Display on Online Classroom Main" checked. This is how it shows when presented. enter image description here

As far as we know, this has only begun happening today as we haven't changed this template since 2014.
One of my content editors made a change to an entry in the courses channel that has the checkbox "Display on Online Classroom Main" checked.
Now, we have a staging site and it has the exact same code and content and it doesn't show the same.
Any ideas???

share|improve this question
    
did something happen to the hosting? maybe a change in php versions? – Jelle Dijkstra Nov 18 at 18:36
    
No, self-hosted, Any idea what could cause this? I removed the ExpressionEngine Info accessory the other day as it was causing issues with the admin templates but other than that, no other changes. – MB34 Nov 18 at 18:39
    
Turn on the profiler to see what is being output. It's odd that u mentioned u turned off an accessory because it too caused errors. Smells like a server something has changed. – stuartmcd69 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.