в wp-bootstrap-navwalker.php, изменить этот кусок кода:
находим
[php]
// If item has_children add atts to a.
if ( $args->has_children && $depth === 0 ) {
$atts[‘href’] = ‘#’;
$atts[‘data-toggle’] = ‘dropdown’;
$atts[‘class’] = ‘dropdown-toggle’;
} else {
$atts[‘href’] = ! empty( $item->url ) ? $item->url : ”;
}
[/php]
и изменяем на
[php]
// If item has_children add atts to a.
if ( $args->has_children && $depth === 0 ) {
$atts[‘href’] = ( $item->url );
$atts[‘data-toggle’] = ‘dropdown’;
$atts[‘class’] = ‘dropdown-toggle disabled’;
$atts[‘aria-haspopup’] = ‘true’;
} else {
$atts[‘href’] = ! empty( $item->url ) ? $item->url : ”;
}
[/php]





