Skip to main content
Skip table of contents

How to edit the cookies' lifetime? (first-party)

The configuration of the lifetime of first-party cookies is embedded in your JavaScript file regardless of the version of your tag.

For Piano-analytics.js

Versions before 6.8.0

You can change the lifetime of cookies by setting a new value for the following configuration keys:

  • storageLifetimePrivacy for the consent cookie.

  • storageLifetimeUser for the user cookie (user_id).

  • storageLifetimeVisitor for the unique visitor cookie (visitor_id).

More information is available in our online documentation: SDK configuration.

Those keys cover the cookies pa_privacy, pa_user and pa_vid.

Versions above 6.8.0

You can change the lifetime of cookies by adding the desired configuration to the object window.pdl.cookies.

For example:

CODE
window.pdl = window.pdl || {};
window.pdl.cookies = {
  _pprv: {
    expires: 183 //Set 183 days only for _pprv cookie
  }
};

This cover all of the following cookies: _pprv, _pctx, _pcid. You can find further information in the following documentation: Consent Management for Client Storage (Cookies)

For SmartTag

You can change it within the application Tag Composer. Choose your site, choose your configuration and then edit the settings of the "Client-side user ID" plug-in. Finally modify the value of the parameter "Visitor ID Lifetime" (expressed in days).

If you use a third party cookie, then the lifetime of the third party cookie will be 13 fixed months in order to comply with French (CNIL) and European laws. This duration is not configurable.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.