How To Non Activated This Notification

everytime login in vendor. i have this notification :

even i close the notif. always showing the notif

how i can hide the notification.

notif.png

First notice,

http://prntscr.com/fiyhr9second

notice not sure

Approve (or deny) the vendors you've had apply.

John's link above will tell you how to turn off the first notice.

Approve (or deny) the vendors you've had apply.

John's link above will tell you how to turn off the first notice.

then how i can remove that notification? for everytime

1st: Design -> Themes -> Rebuild cache automatically

2nd: Settings -> General -> Monitor changes in core files

1st: Design -> Themes -> Rebuild cache automatically

2nd: Settings -> General -> Monitor changes in core files

Monitor changes in core files : CHECKED

Rebuild cache automatically : ON and OFF still have notification in vendor page.

how to make notification only for administrator. in vendor hidden

app/controllers/common/auth.php

Try to replace

                     if (Development::isEnabled('compile_check')) {
                         fn_set_notification('W', __('warning'), __('warning_store_optimization_dev', array('[link]' => fn_url("themes.manage"))));
                     }

with

                     if (Development::isEnabled('compile_check') && ACCOUNT_TYPE == 'admin') {
                         fn_set_notification('W', __('warning'), __('warning_store_optimization_dev', array('[link]' => fn_url("themes.manage"))));
                     }