Changeset 3294726
- Timestamp:
- 05/16/2025 11:10:07 AM (11 months ago)
- Location:
- cookietractor/trunk
- Files:
-
- 3 edited
-
cookietractor.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/frontend/Frontend.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cookietractor/trunk/cookietractor.php
r3281805 r3294726 4 4 * Plugin URI: https://www.cookietractor.com/ 5 5 * Description: CookieTractor plugin for Wordpress 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: cookietractor 8 8 * License: GPLv2 or later -
cookietractor/trunk/readme.txt
r3281805 r3294726 4 4 * Requires at least: 5.7 5 5 * Tested up to: 6.7 6 * Stable tag: 1.0. 26 * Stable tag: 1.0.3 7 7 * Requires PHP: 7.2 8 8 * License: GPLv2 or later … … 127 127 Here you can see the changes made in each release of the plugin. 128 128 129 ### 1.0.3 ### 130 Fixed an issue where the script was only loading on the front page instead of across all pages. 131 129 132 ### 1.0.2 ### 130 133 Readme updates -
cookietractor/trunk/src/frontend/Frontend.php
r3280039 r3294726 17 17 $website_code = get_option('cookietractor_website_code'); 18 18 19 if( is_front_page() && !empty($website_code)) {19 if(!is_admin() && !empty($website_code)) { 20 20 $parser = new WebsiteCodeParser($website_code); 21 21
Note: See TracChangeset
for help on using the changeset viewer.