Question: Toastr Notification Showing Every Page Reload

Toastr Notification Showing Every Page Reload

Hello, In every page reload even when I go to another page toastr notification keep showing me old notification, how can I fix it?

MK

Mehmet kocak

Asked

Hello, In every page reload even when I go to another page toastr notification keep showing me old notification, how can I fix it?

  • MS

    Mian Saleem

    Answered

    Hello,

    Flash messages should be cleared by session automatically. If not, please edit app/core/MY_Controller.php and add the lines below after line no 38 $meta['warning'] = $data['warning'] ?? $this->session->flashdata('warning');

    $this->session->unset_userdata('error');
    $this->session->unset_userdata('message');
    $this->session->unset_userdata('warning');
    

    These lines will reset the session messages data.

    Thank you

  • Login to Reply