Plugin Directory


Ignore:
Timestamp:
06/29/2022 12:12:15 PM (4 years ago)
Author:
MooveAgency
Message:

Version 4.8.8 released

Location:
gdpr-cookie-compliance
Files:
95 added
3 edited

Legend:

Unmodified
Added
Removed
  • gdpr-cookie-compliance/trunk/gdpr-functions.php

    r2592077 r2749639  
    221221            endif;
    222222            if ( $attachment_id ) :
    223                 $_image = wp_get_attachment_image_src( $attachment_id, $image_size );           
    224                 $gdpr_default_content = new Moove_GDPR_Content();
    225                 $option_name          = $gdpr_default_content->moove_gdpr_get_option_name();   
    226                 $gdpr_options         = get_option( $option_name );
    227                 $gdpr_options['moove_gdpr_company_logo_id'] = $attachment_id;
    228                 update_option( $option_name, $gdpr_options );
     223                $_image = wp_get_attachment_image_src( $attachment_id, $image_size );       
     224                if ( ! isset( $options['moove_gdpr_company_logo_id'] ) ) :
     225                    $gdpr_default_content = new Moove_GDPR_Content();
     226                    $option_name          = $gdpr_default_content->moove_gdpr_get_option_name();   
     227                    $gdpr_options         = get_option( $option_name );
     228                    $gdpr_options['moove_gdpr_company_logo_id'] = $attachment_id;
     229                    update_option( $option_name, $gdpr_options );
     230                endif;
    229231                if ( $_image ) :
    230232                    $image_details = array(
  • gdpr-cookie-compliance/trunk/moove-gdpr.php

    r2742223 r2749639  
    55 *  Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
    66 *  Description: Our plugin is useful in preparing your site for the following data protection and privacy regulations: GDPR, CCPA, PIPEDA, AAP, LGPD and others.
    7  *  Version: 4.8.7
     7 *  Version: 4.8.8
    88 *  Author: Moove Agency
    99 *  Domain Path: /languages
     
    1919} // Exit if accessed directly
    2020
    21 define( 'MOOVE_GDPR_VERSION', '4.8.7' );
     21define( 'MOOVE_GDPR_VERSION', '4.8.8' );
    2222if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
    2323    define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
  • gdpr-cookie-compliance/trunk/readme.txt

    r2742223 r2749639  
    33Donate link: https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/
    44Tags: GDPR, CCPA, cookie banner, cookie law, cookie consent, cookie notice, dsgvo, rgpd
    5 Stable tag: 4.8.7
     5Stable tag: 4.8.8
    66Requires at least: 4.5
    77Tested up to: 6.0
     
    2424* **Set the position** of the Cookie Consent Banner: at the top or bottom of your pages
    2525* **Flexible** - decide which scripts will be loaded by default or only when the user gives consent
    26 * Includes both **'Accept'** and **'Reject'** buttons
     26* **'Accept', **'Reject'**, 'Close' and 'Settings' buttons
    2727* **Consent expiration** settings
    28 * Includes link to **Privacy Policy** page
     28* Link to **Privacy Policy** page
    2929* Simple, beautiful & intuitive user interface
    3030* Choose from **two unique layouts**
     
    275275
    276276== Changelog ==
     277= 4.8.8: 29 June 2022 =
     278* DB queries optimized
     279
    277280= 4.8.7: 14 June 2022 =
    278 * Added support to TranslatePress plugin
    279 * Reject button less visible hook fixed
     281* Added support for TranslatePress plugin
    280282* Minor fixes
    281283
Note: See TracChangeset for help on using the changeset viewer.