Question: Message Keep Popping Out Every Time

Message Keep Popping Out Every Time

Hi Support, Can you help me to solve this problem that I encounter? Message keep on popping out every time I change pages. It is quite annoying to see this message keep popping out.

E

Erwin

Asked

Hi Support,

Can you help me to solve this problem that I encounter? Message keep on popping out every time I change pages. It is quite annoying to see this message keep popping out.

  • 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

  • E

    Erwin

    Answered

    Hi Mian Saleem,

    Done and thank you for the great help here. So happy to join this helpful community.

    Erwin

  • MS

    Mian Saleem

    Answered

    I am glad to know and thank you for updating 😃

  • Login to Reply