Plugin Directory


Ignore:
Timestamp:
11/29/2022 01:38:53 PM (3 years ago)
Author:
MooveAgency
Message:

Version 4.9.5

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

Legend:

Unmodified
Added
Removed
  • gdpr-cookie-compliance/trunk/class-moove-gdpr-actions.php

    r2813436 r2825965  
    9191            add_action( 'admin_url', array( &$this, 'gdpr_form_admin_url_filter' ), 10, 1 );
    9292        endif;
     93
     94        add_action( 'gdpr_template_html_load', array( &$this, 'gdpr_prevent_html_load_to_divi_builder' ), 10, 1);
    9395    }
    9496    /**
     
    102104        endif;
    103105        return $url;
     106    }
     107
     108    /**
     109     * Prevent loading GDPR HTML templates to Divi Builder
     110     */
     111    public static function gdpr_prevent_html_load_to_divi_builder( $load ) {
     112        if ( function_exists( 'et_core_is_fb_enabled' ) && et_core_is_fb_enabled() ) :
     113            $load = false;
     114        endif;
     115        return $load;
    104116    }
    105117
  • gdpr-cookie-compliance/trunk/moove-gdpr.php

    r2816538 r2825965  
    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.9.4
     7 *  Version: 4.9.5
    88 *  Author: Moove Agency
    99 *  Domain Path: /languages
     
    1919} // Exit if accessed directly
    2020
    21 define( 'MOOVE_GDPR_VERSION', '4.9.4' );
     21define( 'MOOVE_GDPR_VERSION', '4.9.5' );
    2222if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
    2323    define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
  • gdpr-cookie-compliance/trunk/readme.txt

    r2816538 r2825965  
    33Donate link: https://www.mooveagency.com/wordpress-plugins/gdpr-cookie-compliance/
    44Tags: GDPR, CCPA, DSGVO, cookie banner, cookie notice
    5 Stable tag: 4.9.4
     5Stable tag: 4.9.5
    66Requires at least: 4.5
    77Tested up to: 6.1
     
    276276
    277277== Changelog ==
     278= 4.9.5: 29 November 2022 =
     279* Excluded cookie HTML from Divi Builder
     280
    278281= 4.9.4: 11 November 2022 =
    279282* Floating Button styles and options improved
Note: See TracChangeset for help on using the changeset viewer.