Changeset 3481126
- Timestamp:
- 03/12/2026 11:58:33 AM (2 weeks ago)
- Location:
- cookiebot/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
src/settings/pages/PPG_Page.php (modified) (4 diffs)
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 # 2 2 * Contributors: cookiebot,phpgeekdk,aytac 3 3 * Tags: cookie banner, cookie consent, cookie notice, GDPR, privacy, cmp, consent‑management‑platform, google‑consent‑mode, compliance, gdpr‑compliance, ccpa, dma … … 164 164 **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.** 165 165 166 167 ### 4.6.6 ### 168 Release date: March 12th 2026 169 170 Cookiebot 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 166 175 167 176 ### 4.6.5 ### -
cookiebot/trunk/src/settings/pages/PPG_Page.php
r3473643 r3481126 51 51 } 52 52 53 // Prevent PPG's own activation redirect from stripping our ppg_ref query param. 54 delete_transient( 'ppguc_activation_redirect' ); 55 53 56 wp_send_json_success(); 54 57 } … … 101 104 $is_active = self::is_plugin_active(); 102 105 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 103 114 if ( ! $is_active ) { 104 115 wp_enqueue_script( … … 108 119 Cookiebot_WP::COOKIEBOT_PLUGIN_VERSION, 109 120 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' )118 121 ); 119 122 … … 136 139 137 140 $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, 141 145 ); 142 146
Note: See TracChangeset
for help on using the changeset viewer.