Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
490 views
in Themes by
anyone can tell me how to solve this problem?

1 Answer

+1 vote
by
It was intentional by design to hide the notification on mobile as the notifications are not responsive.

If you want them to show them up, then you got to change it here -

https://github.com/amiyasahu/Donut/blob/master/qa-theme/Donut-theme/templates/user-loggedin-drop-down.php#L17

Before ==> <li class="notf-bubble visible-lg">

After ==>     <li class="notf-bubble">

It should solve the issue.
...