29.09.2017, 11:53
Set Additional classes of your element to mylink, add this code to custom JavaScript (change pin from 1234 and URL as needed):
Code:
$(function(){
$('.mylink').off('vclick').on('vclick', function(e) {
showPincode('1234', {
callback: function() {
window.location = 'https://forum.logicmachine.net/';
}
});
return $.stopEvent(e);
});
});