I believe it is fixed. I loaded and scrolled several pages and it doesn’t seem to randomly slide open from the side unexpectedly anymore. Should the problem resurface, I will repost here.
Here is what I changed in “responsive-menu.php”.
File Location: wp-content/themes/”your-theme-name_folder”/inc/responsive-menu/”responsive-menu.php”
I believe it’s line 42 (as I have previously made edits), where it reads:
$wpr_options = array( ‘zooming’ => get_theme_mod(‘zooming’, ‘yes’),’from_width’ => get_theme_mod(‘from_width’, 1080),’swipe’ => get_theme_mod(‘swipe’, ‘yes’));
The very last word above that says ‘yes’, I changed to ‘no’. The updated code:
$wpr_options = array( ‘zooming’ => get_theme_mod(‘zooming’, ‘yes’),’from_width’ => get_theme_mod(‘from_width’, 1080),’swipe’ => get_theme_mod(‘swipe’, ‘no’));