committed to helping

Meet Our Team

jQuery(document).ready(function($){ $('.js-open-therapist-popup').on('click', function(e){ e.preventDefault(); // Find the closest Loop Item wrapper var $loopItem = $(this).closest('.e-loop-item'); // adjust if your loop wrapper class is different if(!$loopItem.length) return; // Get the post ID from Elementor's data-id attribute var postID = $loopItem.data('id'); // Elementor automatically adds this if(!postID) return; // Open the Elementor popup elementorProFrontend.modules.popup.showPopup({ id: 4434, // Replace with your popup ID post_id: postID }); }); });