document.addEventListener('DOMContentLoaded', function() {
// Find the notice element and check its content
var noticeElement = document.querySelector('.wc-notice');
var noticeContent = noticeElement.textContent;
// Check if the notice content contains a specific text
if (noticeContent.includes('Dem Kunden zugewiesene Versandzone')) {
// Hide the notice element
noticeElement.style.display = 'none';
}
});
