Plugin Directory

Changeset 1605934 for uk-cookie-consent


Ignore:
Timestamp:
03/01/2017 12:32:07 PM (9 years ago)
Author:
Catapult_Themes
Message:

Committing 2.3.1

Location:
uk-cookie-consent/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • uk-cookie-consent/trunk/admin/class-ctcc-admin.php

    r1577328 r1605934  
    700700       
    701701        public function settings_section_callback() {
    702             echo '<p>' .__( 'Basic settings', 'uk-cookie-consent' ) . '</p>';
     702            echo '<p>' . __( 'Basic settings', 'uk-cookie-consent' ) . '</p>';
     703            echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>';
    703704        }
    704705       
    705706        public function content_settings_section_callback() {
    706707            echo '<p>' .__( 'Update the content displayed to the user', 'uk-cookie-consent' ) . '</p>';
     708            echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>';
    707709        }
    708710               
    709711        public function styles_settings_section_callback() {
    710712            echo '<p>' .__( 'Change the styles here if you like - but it\'s better in the Customizer', 'uk-cookie-consent' ) . '</p>';
     713            echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>';
    711714        }
    712715       
    713716        public function pages_settings_section_callback() {
    714717            echo '<p>' . __( 'Use this section to set exclusion rules for pages and posts.', 'uk-cookie-consent' ) . '</p>';
     718            echo '<p><a href="http://iubenda.refr.cc/JKNZ55D" target="_blank">' . __( 'Create your own privacy policy here') . '</a></p>';
    715719        }
    716720       
  • uk-cookie-consent/trunk/readme.txt

    r1577328 r1605934  
    44Tags: cookie law, cookies, eu cookie law, eu privacy directive, cookie compliance, cookie law, cookie notice, cookie notification, wpml, geo ip
    55Requires at least: 4.3
    6 Tested up to: 4.7.1
    7 Stable tag: 2.3.0
     6Tested up to: 4.7.2
     7Stable tag: 2.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313Cookie Consent is one of the simplest and most popular cookie notification plugins out there. It's been actively developed and supported since 2012 and has over 100 5 star reviews.
    1414
    15 > <strong>New in 2.3.0:</strong><br>Geo IP support - choose which continents to display notifications (requires GeoIP Detect plugin to be installed)
     15> <strong>New in 2.3.0:</strong><br>Geo IP support - choose which continents to display notifications (requires GeoIP Detect plugin to be installed)<br>
    1616> <strong>New in 2.2.0:</strong><br>Easily select pages or posts where the cookie notification doesn't display. You now have complete control over which pages display a notification and which don't.<br>Close on scroll - optionally choose scrolling as closure method.
    1717
     
    7171
    7272== Changelog ==
     73
     74= 2.3.1 =
     75* Added: link to create privacy policy
     76* Added: tracking
    7377
    7478= 2.3.0 =
  • uk-cookie-consent/trunk/uk-cookie-consent.php

    r1577328 r1605934  
    44Plugin URI: http://catapultthemes.com/cookie-consent/
    55Description: The only cookie consent plugin you'll ever need.
    6 Version: 2.3.0
     6Version: 2.3.1
    77Author: Catapult_Themes
    88Author URI: http://catapultthemes.com/
     
    7676}
    7777register_activation_hook ( __FILE__, 'ctcc_create_policy_page' );
     78
     79/**
     80 * This function allows you to track usage of your plugin
     81 * Place in your main plugin file
     82 * Refer to https://wisdomplugin.com/support for help
     83 */
     84if( ! class_exists( 'Plugin_Usage_Tracker') ) {
     85    require_once dirname( __FILE__ ) . '/tracking/class-plugin-usage-tracker.php';
     86}
     87if( ! function_exists( 'uk_cookie_consent_start_plugin_tracking' ) ) {
     88    function uk_cookie_consent_start_plugin_tracking() {
     89        $wisdom = new Plugin_Usage_Tracker(
     90            __FILE__,
     91            'https://wisdomplugin.com',
     92            array(),
     93            true,
     94            true,
     95            1
     96        );
     97    }
     98    uk_cookie_consent_start_plugin_tracking();
     99}
Note: See TracChangeset for help on using the changeset viewer.