We’re also experiencing this problem on our site. The ‘Don’t Show In Homepage isn’t working’, with the content always visible.
We’ve managed to plug this temporarily with a piece of javascript…
I noticed there’s a new ‘visibility’ button, maybe that’s what we need to tweak now?
<!-- This image should show everywhere except the home page -->
<div id="hideHome" style="display:none;"><a href="/"><img src="/wp-content/uploads/2012/06/Ship-Underpants-TakeMeHome.jpg" title="Take Me Home"></a></div>
<script type="text/javascript">
jQuery(function()
{
if (window.location.pathname == '/') {
jQuery('#hideHome').hide();
} else {
jQuery('#hideHome').show();
}
});
</script>