I just wanna ask about how to disable automatic close for dropdown menu on nav bar for specified menu item like below picture:

This is a Bootstrap related issue. The only way to do that is via javascript:
$("#your-menu-id").on('click', function (e) {
e.stopPropagation();
});
Thanks for replying and help Abdullah :)
No problem. Did it work?
I am actually working on a custom mega menu for the premium collection. Thanks for sharing the solution!

Most helpful comment
This is a Bootstrap related issue. The only way to do that is via javascript: