Plugin Directory

Changeset 3294726


Ignore:
Timestamp:
05/16/2025 11:10:07 AM (11 months ago)
Author:
cookietractor
Message:

Version bump to 1.0.3

Location:
cookietractor/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cookietractor/trunk/cookietractor.php

    r3281805 r3294726  
    44* Plugin URI: https://www.cookietractor.com/
    55* Description: CookieTractor plugin for Wordpress
    6 * Version: 1.0.2
     6* Version: 1.0.3
    77* Author: cookietractor
    88* License: GPLv2 or later
  • cookietractor/trunk/readme.txt

    r3281805 r3294726  
    44* Requires at least: 5.7
    55* Tested up to: 6.7
    6 * Stable tag: 1.0.2
     6* Stable tag: 1.0.3
    77* Requires PHP: 7.2
    88* License: GPLv2 or later
     
    127127Here you can see the changes made in each release of the plugin.
    128128
     129### 1.0.3 ###
     130Fixed an issue where the script was only loading on the front page instead of across all pages.
     131
    129132### 1.0.2 ###
    130133Readme updates
  • cookietractor/trunk/src/frontend/Frontend.php

    r3280039 r3294726  
    1717        $website_code = get_option('cookietractor_website_code');
    1818
    19         if(is_front_page() && !empty($website_code)) {
     19        if(!is_admin() && !empty($website_code)) {
    2020            $parser = new WebsiteCodeParser($website_code);
    2121
Note: See TracChangeset for help on using the changeset viewer.