document.addEventListener("DOMContentLoaded", function () {
document.querySelectorAll('.w2dc-show-on-map').forEach(function(btn) {
// change text only
btn.textContent = "View";
// redirect instead of map action
btn.addEventListener("click", function(e) {
e.preventDefault();
let listing = btn.closest('.w2dc-listing-location');
if (!listing) return;
let link = listing.querySelector("a");
if (link) {
window.location.href = link.href;
}
});
});
});