- Introduced Cookie Notice Pro plugin to manage cookie consent for GDPR compliance. - Added CSS styles for the cookie notice popup, including light and dark themes. - Implemented Google Consent Mode with default denied settings and GTM integration. - Created Elementor Webhook Relay plugin to forward form submissions to Google Apps Script.
8 lines
258 B
PHP
8 lines
258 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Cookie Notice Pro Loader
|
|
* Description: Auto-loader dla mu-plugin Cookie Notice Pro (WP nie skanuje rekursywnie mu-plugins).
|
|
*/
|
|
if (!defined('ABSPATH')) { exit; }
|
|
require_once __DIR__ . '/cookie-notice-pro/cookie-notice-pro.php';
|