Viewing 1 replies (of 1 total)
  • Plugin Author Daniel Iser

    (@danieliser)

    @marinmatosevic – Sounds like you will need to write some JS to trigger your popups rather than using the built in methods. The built in methods prevent the default click function of anything clicked. That would include opening a link.

    Instead you will want to use something like this.

    jQuery('.popup-subscribe').on('click', function (e) {
        jQuery('#popmake-123').popmake('open');
    });

    Change 123 to match your popups ID #.

    Check here for a getting started with JS guide.

Viewing 1 replies (of 1 total)
  • The topic ‘Popup on external links’ is closed to new replies.