This issue happens for our site with first time users. I’ts not ideal but we manage to solve it but adding this in our main.js file:
$(document).on('click', '.submit-fooditem-button', function() {
$('.modal-backdrop').removeClass('in');
$('.modal-backdrop').css({'display': 'none'});
});
The latest update broke the plugin even more. Whenever a user would select their delivery options, it would remove the 2nd pop up to select the items from the menu, forcing the user to refresh the page to remove the popup overlay.
I recently had to add this to fix the issue:
.modal.rpress-food-options.in {
display: flex !important;
}
Our agency invested into this plugin but really starting to regret it with all the hassle it’s caused us. Hopefully support can help with these issues.