Changeset 3225724
- Timestamp:
- 01/20/2025 04:40:25 PM (14 months ago)
- Location:
- just-cookie-consent-popup
- Files:
-
- 3 edited
-
tags/1.0.3/just-cookie-consent-popup.php (modified) (2 diffs)
-
trunk/just-cookie-consent-popup.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
just-cookie-consent-popup/tags/1.0.3/just-cookie-consent-popup.php
r3225573 r3225724 58 58 59 59 $new_settings = [ 60 'message' => !empty($_POST['jccpopup_message']) ? sanitize_text_field(wp_unslash($_POST['jccpopup_message'])) : '',60 'message' => !empty($_POST['jccpopup_message']) ? wp_unslash($_POST['jccpopup_message']) : '', 61 61 'button_text' => !empty($_POST['jccpopup_button_text']) ? sanitize_text_field(wp_unslash($_POST['jccpopup_button_text'])) : '', 62 62 'background_color' => !empty($_POST['jccpopup_background_color']) ? sanitize_hex_color(wp_unslash($_POST['jccpopup_background_color'])) : '', … … 155 155 ?> 156 156 <div id="cookie-popup"> 157 <p><?php echo esc_html($settings['message']); ?></p>157 <p><?php echo $settings['message']; ?></p> 158 158 <button id="cookie-popup-button"><?php echo esc_html($settings['button_text']); ?></button> 159 159 </div> -
just-cookie-consent-popup/trunk/just-cookie-consent-popup.php
r3225572 r3225724 58 58 59 59 $new_settings = [ 60 'message' => !empty($_POST['jccpopup_message']) ? sanitize_text_field(wp_unslash($_POST['jccpopup_message'])) : '',60 'message' => !empty($_POST['jccpopup_message']) ? wp_unslash($_POST['jccpopup_message']) : '', 61 61 'button_text' => !empty($_POST['jccpopup_button_text']) ? sanitize_text_field(wp_unslash($_POST['jccpopup_button_text'])) : '', 62 62 'background_color' => !empty($_POST['jccpopup_background_color']) ? sanitize_hex_color(wp_unslash($_POST['jccpopup_background_color'])) : '', … … 155 155 ?> 156 156 <div id="cookie-popup"> 157 <p><?php echo esc_html($settings['message']); ?></p>157 <p><?php echo $settings['message']; ?></p> 158 158 <button id="cookie-popup-button"><?php echo esc_html($settings['button_text']); ?></button> 159 159 </div> -
just-cookie-consent-popup/trunk/readme.txt
r3225572 r3225724 14 14 A simple plugin to display a cookie consent popup with settings managed in the admin panel. 15 15 16 This plugin provides a seamless solution for displaying a cookie consent popup on your website , ensuring compliance with privacy regulations like GDPR and CCPA. It offers a user-friendly way to notify visitors about the use of cookies and request their consent before proceeding. The popup is fully customizable, allowing you to modify the text, appearance, and behavior to match your website’s design and tone. Its lightweight design ensures it doesn’t impact website performance while providing a polished user experience.16 This plugin provides a seamless solution for displaying a cookie consent popup on your website. It offers a user-friendly way to notify visitors about the use of cookies and request their consent before proceeding. The popup is fully customizable, allowing you to modify the text, appearance, and behavior to match your website’s design and tone. Its lightweight design ensures it doesn’t impact website performance while providing a polished user experience. 17 17 18 18 The plugin’s settings are easily managed through an intuitive admin panel, eliminating the need for technical expertise. From the admin panel, you can configure consent text, color, and button text. This centralized control makes it ideal for website owners looking for a hassle-free way to handle cookie compliance while maintaining transparency with their users.
Note: See TracChangeset
for help on using the changeset viewer.