Viewing 3 replies - 1 through 3 (of 3 total)
  • 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>
    Thread Starter jubileelewis

    (@jubileelewis)

    Where should I put that code? on template headers?

    Plugin Author vaakash

    (@vaakash)

    Hello,

    Issue fixed in v3.9 please check that out …

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘don't show in HOMEPAGE not working’ is closed to new replies.