Hey there heatherpeters,
Hope you’re well today!
This is not possible out of a box with the current version of the plugin. Since this is an interesting idea I’ve added this as a featured request for the plugin so it will be considered for the future versions of the plugin.
Until then you should be able to achieve that with some custom code. Please try adding the following code to your child theme functions.php:
add_action('wp_footer','open_link_new_window');
function open_link_new_window(){
?>
<script>
jQuery(function() {
function handle_cta( ev ) {
var href = jQuery( this ).attr( 'href' );
window.open( href, '_blank' );
return false;
}
jQuery(document).on('click', '.wdpu-cta', handle_cta);
});
</script>
<?php
}
This should open the call to action button link in a new window.
Please let me know if this helps ??
Best regards,
Bojan