Hi @nelsonleemiller
Thanks for testing the plugin and thanks for reporting the issue.
In fact, the Popups work with *any* element, but just buttons. I tested it with a blurb by adding a “Title Link URL”, which works perfectly.
However, the blurb “Module Link URL” is not a real link but some javascript logic that is handled by Divi. The current version of Popups for Divi does not recognize this JS handler yet.
I’ve added it to the todo list and will review possible solutions for the next update.
For now, you can either
– use the “Title Link URL” to open the popup.
– place a link or a button inside the blurb contents to open the popup
– open the popup via some custom JS code (add a “Code” Module to your page), like this:
<script>
jQuery('.your-blurb-class').on('click', function() {
DiviPopup.openPopup('your-popup-id')
});</script>
I hope this helps for now.
Philipp