Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1040475

    Hello. I need to install cookies only on certain pages. I tried this code on function.php but it does not work:
    if(is_page(4122) or is_page(4123) or is_page(4124) or is_page(4125) or is_page(4126) )
    {
    setcookie(‘my_cookie_name_1’, ‘my_cookie_value_1’, time()+31536000, ‘/’, ”, true, false);
    /* more cookies */
    setcookie(‘my_cookie_name_2’, ‘my_cookie_value_2’, 0, ‘/’, ”, false, false);
    }

    can you help me?

    #1040624

    Hey forever_prodotti,

    The PHP selector for or is ||, please try that out instead.

    Best regards,
    Rikard

    #1040696

    Same result. Another idea?

    #1041103

    Hi,

    No, no other ideas unfortunately.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.