Viewing 1 replies (of 1 total)
  • Plugin Author dFactory

    (@dfactory)

    You can do it like this:

    // Display notice on home page only
    function custom_cn_cookie_notice_output( $output ) {
    	if ( ! is_front_page() ) { // or ! is_home()
    		$output = '';
    	}
    	return $output;
    }
    add_filter( 'cn_cookie_notice_output', 'custom_cn_cookie_notice_output' );

    Pzdr.
    Bartosz / dfactory

Viewing 1 replies (of 1 total)
  • The topic ‘How to display bar only on the home page?’ is closed to new replies.