@hjensen244 we’ve already discussed / solved this in the FB thread, but I’m just reposting the solution here for the benefit of anyone else encountering the issue…
“A javascript event handler has been added to the site (presumably by the popup plugin) to prevent clicks on the popup section, e.g.:
jQuery(document).ready(function( $ ) {
$(document).on('click', '.popup', function(event){
event.preventDefault();
});
});
This is preventing the buttons from being clickable. In the browser console I can fix this by removing the event handler with:
jQuery(document).off('click', '.popup');
So, I think you should be able to fix the issue by adding this into “Divi > Theme Options > Integrations > Add code to the body”:
jQuery(document).ready(function($) {
setTimeout(function() {
$(document).off('click', '.popup');
}, 0);
});
I’m not exactly sure why clicks were being prevented on the popups. I can’t see any negative consequences to removing the handler – everything seems to work correctly without it. But be sure to test that the popups are working to your liking after adding the fix.”