Viewing 1 replies (of 1 total)
  • Pi Zi

    (@freelancephp)

    The easiest way would be to add some javascript code, f.e.:

    jQuery(function ($) {
        $('a.ext-link').click(function (e) {
            // add here specific code to open in a modal/lightbox/iframe etc
    
            // prevent opening 2 times
            e.preventDefault();
        });
    });
Viewing 1 replies (of 1 total)

The topic ‘open in modal/lightbox/iframe’ is closed to new replies.