This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #cmplz-manage-consent .cmplz-manage-consent { | |
| width: 50px !important; | |
| height: 50px !important; | |
| border-radius: 50% !important; | |
| background-color: white !important; /* change color */ | |
| background-image: url("https://your-site.com/path-to-your-icon.svg") !important; /* use your .svg path*/ | |
| background-repeat: no-repeat !important; | |
| background-position: center !important; | |
| background-size: 50% !important; | |
| bottom: 5% !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS Only solution, Same DIV needs !important */ | |
| #cmplz-manage-consent .cmplz-manage-consent { | |
| width: 50px !important; | |
| height: 50px !important; | |
| border-radius: 50% !important; | |
| background: #333 !important; | |
| color: transparent !important; | |
| display: flex !important; | |
| align-items: center !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Complianz Deny Redirect | |
| * Description: Redirects the user to a specific URL after clicking "Deny" on the Complianz cookie banner. | |
| * Author: Complianz Support | |
| * Version: 1.0 | |
| * Replace {your-domain} with the URL you want to redirect to. | |
| * Make sure to include https://, otherwise the redirect won't work. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Complianz - Move "Deny" button inside Preferences modal | |
| * Description: Hides the default "Deny" button from the main banner and moves it inside the preferences section. | |
| * Version: 1.5 | |
| * Author: Complianz Support | |
| */ | |
| add_action('wp_footer', function () { | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| // Wait for DOM to be ready | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const impressumLink = document.querySelector('.cmplz-documents.cmplz-links .cmplz-link.impressum'); | |
| if (impressumLink) { | |
| impressumLink.textContent = 'text'; // Change the text inside the link | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| // Wait for DOM to be ready | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const privacystatementLink = document.querySelector('.cmplz-documents.cmplz-links .cmplz-link.privacy-statement'); | |
| if (privacystatementLink) { | |
| privacystatementLink.textContent = 'your_text'; // Change the text inside the link | |
| } | |
| const cookiestatementLink = document.querySelector('.cmplz-documents.cmplz-links .cmplz-link.cookie-statement'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| document.addEventListener("DOMContentLoaded", function() { | |
| document.querySelectorAll("a.cmplz-link.cookie-statement").forEach(function(link) { | |
| link.setAttribute("target", "_blank"); | |
| link.setAttribute("rel", "noopener noreferrer"); | |
| }); | |
| document.querySelectorAll("a.cmplz-link.privacy-statement").forEach(function(link) { | |
| link.setAttribute("target", "_blank"); | |
| link.setAttribute("rel", "noopener noreferrer"); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Ultimate Maps Integration for Complianz GDPR | |
| */ | |
| defined( 'ABSPATH' ) || die( 'You do not have access to this page!' ); | |
| /** | |
| * Register Ultimate Maps scripts with Complianz. | |
| * |
OlderNewer