Plugin Directory

Changeset 3481126


Ignore:
Timestamp:
03/12/2026 11:58:33 AM (2 weeks ago)
Author:
cookiebot
Message:

Releasing version 4.6.6

Location:
cookiebot/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cookiebot/trunk/readme.txt

    r3473652 r3481126  
    1 # Cookiebot by Usercentrics - Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode #
     1# Cookiebot by Usercentrics - Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode #
    22* Contributors: cookiebot,phpgeekdk,aytac
    33* Tags: cookie banner, cookie consent, cookie notice, GDPR, privacy, cmp, consent‑management‑platform, google‑consent‑mode, compliance, gdpr‑compliance, ccpa, dma
     
    164164**Cookiebot by Usercentrics Plugin will soon no longer support PHP 5. If your website still runs on this version we recommend upgrading so you can continue enjoying the features Cookiebot by Usercentrics offers.**
    165165
     166
     167### 4.6.6 ###
     168Release date: March 12th 2026
     169
     170Cookiebot by Usercentrics version 4.6.6 is out! This release includes an improvement.
     171
     172####Improvements####
     173
     174* Improved tracking for PPG redirect — the redirect URL with tracking parameters is now available in all PPG page states, not only when the plugin is inactive
    166175
    167176### 4.6.5 ###
  • cookiebot/trunk/src/settings/pages/PPG_Page.php

    r3473643 r3481126  
    5151        }
    5252
     53        // Prevent PPG's own activation redirect from stripping our ppg_ref query param.
     54        delete_transient( 'ppguc_activation_redirect' );
     55
    5356        wp_send_json_success();
    5457    }
     
    101104        $is_active    = self::is_plugin_active();
    102105
     106        $ppg_redirect_url = add_query_arg(
     107            array(
     108                'page'    => 'privacy-policy-usercentrics',
     109                'ppg_ref' => 'content-distribution',
     110            ),
     111            admin_url( 'admin.php' )
     112        );
     113
    103114        if ( ! $is_active ) {
    104115            wp_enqueue_script(
     
    108119                Cookiebot_WP::COOKIEBOT_PLUGIN_VERSION,
    109120                true
    110             );
    111 
    112             $ppg_redirect_url = add_query_arg(
    113                 array(
    114                     'page'    => 'privacy-policy-usercentrics',
    115                     'ppg_ref' => 'content-distribution',
    116                 ),
    117                 admin_url( 'admin.php' )
    118121            );
    119122
     
    136139
    137140        $args = array(
    138             'hero_image'   => asset_url( 'img/ppg-hero.png' ),
    139             'is_installed' => $is_installed,
    140             'is_active'    => $is_active,
     141            'hero_image'       => asset_url( 'img/ppg-hero.png' ),
     142            'is_installed'     => $is_installed,
     143            'is_active'        => $is_active,
     144            'ppg_redirect_url' => $ppg_redirect_url,
    141145        );
    142146
Note: See TracChangeset for help on using the changeset viewer.