@mantis64
So is that a different custom menu being used in a sidebar widget or something else?
Hi Luke,
It was a full width custom menu. Anyway looking around I found a solution. I edited the functions.php and added the following at the bottom.
function remove_theme_location($args) {
if ( isset( $args[‘theme_location’] ) ) {
unset( $args[‘theme_location’] );
}
return $args;
}
add_filter(‘et_fullwidth_menu_args’, ‘remove_theme_location’);
Many thanks for your help
@mantis64
Glad you where able to fix the issue, could you mark it as resolved now.