Du kannst Borlabs Cookie für bestimmte URLs mit dem nachstehenden Code gezielt vollständig deaktivieren.
Füge den Code in dein eigenes Plugin ein oder in die functions.php deines Child-Themes.
Ergänze anschließend die Pfade, unter denen Borlabs Cookie deaktiviert werden soll, im Array $urlList
.
add_action('after_setup_theme', function () {
// Add the URLs where Borlabs Cookie should not be loaded
$urlList = [
'/pathA/',
'/pathB/onlySubPath/',
];
if (!class_exists('\Borlabs\Cookie\Container\ApplicationContainer')) {
return;
}
$shouldRemoveAction = false;
foreach ($urlList as $url) {
if (strpos($_SERVER['REQUEST_URI'], $url) !== false) {
$shouldRemoveAction = true;
break;
}
}
if (!$shouldRemoveAction) {
return;
}
$container = \Borlabs\Cookie\Container\ApplicationContainer::get();
remove_action('init', [$container->get(\Borlabs\Cookie\System\WordPressFrontendDriver\WordPressFrontendInit::class), 'register']);
});