Toastr Notification Showing Every Page Reload

0

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

Question Resolved For: Simple Stock Manager 0 Votes 1 Answers 357 Views
Asked by Mehmet kocak 1 year ago

0

Answered by Mian Saleem 1 year ago

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

We use Cookies

We use cookies to ensure that we give you the best experience on our website. By continuing to browse the site you are agreeing to our use of cookies.