In menu-swapper/includes/functions.php in the mswp_swap_theme_location_filter() function, try changing the line that says
unset( $args['menu'] )
to
$args['menu'] = ''
Let me know if that helps
Thanks for this. Been experiencing the same issue.
In functions.php changed:
if( isset( $args[‘menu’] ) ) unset( $args[‘menu’] );
to
if( isset( $args[‘menu’] ) ) $args[‘menu’] = ”;
and the notice is now gone.
Hi Chris
I never saw your reply as i apparently did not toggle the notification on reply in this thread.
It works great. Thank you. The notification in the admin area is gone.
Thank you