Beschreibung
add_action('wp_footer', function() {
if (!is_singular('job_listing')) return;
?>
function fixMobileH1() {
document.querySelectorAll('.main-info-mobile h1').forEach(el => {
// vermeiden doppelte Umwandlung
if (el.dataset.fixed) return;
let h2 = document.createElement('h2');
h2.innerHTML = el.innerHTML;
h2.className = el.className;
el.replaceWith(h2);
});
}
// sofort nach Laden
document.addEventListener("DOMContentLoaded", fixMobileH1);
// fallback (weil MyListing oft JS nutzt)
setTimeout(fixMobileH1, 500);
setTimeout(fixMobileH1, 1500);
setTimeout(fixMobileH1, 3000);
<?php
});
Bewertung hinzufügen