Article Category

Can I change the SameSite Attribute?

Yes you can. View article to see how.

Yes. Use the filter below by adding it to your code snippets library.

Filter was introduced in CoCart Lite v2.9.1

<?php
add_filter( 'cocart_cookie_samesite', function() {
    return "None; Secure";
});

If you want to know more about SameSite attribute. Read this article.

Was this helpful to you?