• sally

    (@sallyruchman)


    Hello,

    on Desktiop i show the cookie notice in the header. Is it possible to show the cookie notice message only on mobile devices in the footer?

    Thanks a Lot!

    Regards
    Sally

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author dFactory

    (@dfactory)

    There is no option for this in plugin settings.
    But you can achieve that with this code snippet:

    function custom_cn_cookie_notice_args( $args ) {
    	if ( wp_is_mobile() ) {
    		$args['position'] = 'bottom';
    	}
    	return $args;
    }
    add_filter( 'cn_cookie_notice_args', 'custom_cn_cookie_notice_args' );
    Thread Starter sally

    (@sallyruchman)

    Hello,

    when adding the code to functions.php i get a blank page..

    Have to FTP my site to erase the code, to get the website back

    Any Idea?
    Thx
    Sally

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show Cookie Notice on Mobiles in Footer’ is closed to new replies.