On the wp_bootstrap_navwalker.php near ln 84, change the $atts['href']
value as shown below and comment out the $atts['data-toggle']
value:
if ( $args->has_children && $depth === 0 ) {
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
//$atts['data-toggle'] = 'dropdown';
$atts['class'] = 'dropdown-toggle';
$atts['aria-haspopup'] = 'true';
} else {