document.addEventListener("DOMContentLoaded", function() {
setTimeout(function() {
const price = document.querySelector('.woocommerce div.product p.price, .woocommerce div.product span.price');
if (price) {
price.style.display = 'block';
price.style.opacity = '1';
}
}, 1000); // Wacht 1 seconde op JS-manipulatie
});
document.addEventListener('gform_post_render', function(event) {
jQuery('.gform_wrapper').on('change', 'input, select', function() {
gformCalculateTotalPrice();
});
});