Plugin Directory


Ignore:
Timestamp:
03/01/2021 06:10:32 PM (5 years ago)
Author:
themebeez
Message:
  • Fixed admin setting page link in plugin menu
Location:
simple-gdpr-cookie-compliance
Files:
55 added
3 edited

Legend:

Unmodified
Added
Removed
  • simple-gdpr-cookie-compliance/trunk/README.txt

    r2441635 r2483786  
    55Tags: gdpr, cookie, cookies, notice, notification, notify, notifier, gdpr compliance, privacy, privacy directive, cookie notice, simple notice, cookie compliance
    66Requires at least: 5.0.0
    7 Tested up to: 5.6
     7Tested up to: 5.6.1
    88Requires PHP: 7.0.0
    9 Stable tag: 1.0.4
     9Stable tag: 1.0.5
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7676== Changelog ==
    7777
     78= 1.0.5 - Feb 19, 2021 =
     79
     80* Fix: Setting page link
     81
     82
    7883= 1.0.4 - Dec 17, 2020 =
    7984
     
    8186* Fix: Other minor issues
    8287
     88
    8389= 1.0.3 - August 13, 2020 =
    8490
    8591* Testing: Tested on WordPress version 5.5
     92
    8693
    8794= 1.0.2 - 1 December, 2019 =
     
    8996* Added: Link type options
    9097
     98
    9199= 1.0.1 - 4 November, 2019 =
    92100
    93101* Added: Color options
    94102
     103
    95104= 1.0.0 - 2 August, 2019 =
    96105
  • simple-gdpr-cookie-compliance/trunk/includes/class-simple-gdpr-cookie-compliance.php

    r2441635 r2483786  
    155155        $this->loader->add_action( 'admin_menu', $plugin_admin, 'plugin_menu' );
    156156
    157         $this->loader->add_filter( 'plugin_action_links', $plugin_admin, 'plugin_page_links' );
     157        // $this->loader->add_filter( 'plugin_action_links', $plugin_admin, 'plugin_page_links' );
     158        $plugin_basename = SIMPLE_GDPR_COOKIE_COMPLIANCE_BASENAME;
     159
     160        $this->loader->add_filter( "plugin_action_links_{$plugin_basename}", $plugin_admin, 'plugin_page_links' );
    158161
    159162        $plugin_options = new Simple_GDPR_Cookie_Compliance_Admin_Settings( $this->get_plugin_name(), $this->get_version() );
  • simple-gdpr-cookie-compliance/trunk/simple-gdpr-cookie-compliance.php

    r2441635 r2483786  
    55 * Plugin URI:        https://themebeez.com/plugins/simple-gdpr-cookie-compliance
    66 * Description:       Simple GDPR Cookie Compliance is a simple notifier to inform users that your site uses of cookies and show your complies with EU GDPR cookie law and CCPA regulations.
    7  * Version:           1.0.4
     7 * Version:           1.0.5
    88 * Author:            themebeez
    99 * Author URI:        https://themebeez.com/
     
    2424 * Rename this for your plugin and update it as you release new versions.
    2525 */
    26 define( 'SIMPLE_GDPR_COOKIE_COMPLIANCE_VERSION', '1.0.4' );
     26define( 'SIMPLE_GDPR_COOKIE_COMPLIANCE_VERSION', '1.0.5' );
     27define( 'SIMPLE_GDPR_COOKIE_COMPLIANCE_BASENAME', plugin_basename( __FILE__ ) );
    2728
    2829/**
Note: See TracChangeset for help on using the changeset viewer.