I am running Bootstrap on a WP install and have an issue with the url being stripped from the parent drop down nav item.
Here is the code. In menu-item-72
May 2018 this solution worked for me.
Go to your class-wp-bootstrap-navwalker.php file -> comment line 185
// $atts['href'] = '#';
And paste this code.
$atts['href'] = ! empty( $item->url ) ? $item->url : ''; $atts['data-toggle'] = 'hover';
Enjoy.