You need to edit the file wp-content\themes\woodmart\inc\shortcodes\promo-banner.php
and change the code
if ( $link && $attributes['url'] && empty( $btn_text ) ) {
to this one
if ( $link && $attributes['url'] ) {
http://prntscr.com/m80rmn
and this part
<div id="<?php echo esc_attr( $id ); ?>" class="promo-banner<?php echo esc_attr( $class ); ?>" <?php if( $link && $attributes['url'] && empty( $btn_text ) ) echo ( $onclick ); ?> >
to this one
<div id="<?php echo esc_attr( $id ); ?>" class="promo-banner<?php echo esc_attr( $class ); ?>" <?php if( $link && $attributes['url'] ) echo ( $onclick ); ?> >
http://prntscr.com/m80rs0
We will return this in our next update. Sorry for the inconvenience.