document.addEventListener('DOMContentLoaded', function() {
var prices = document.querySelectorAll('.sqs-money-native, .product-price'); // Adjust the selector as per your template
prices.forEach(function(price) {
if (price.textContent.trim() === '$0.00') { // Checks if the price is exactly $0.00
price.textContent = 'POA - Wholesale Only'; // Changes the text to "POA - Wholesale Only"
}
});
});