Re: Stay on same page after add
Reply #1 –
Got it finaly...
Make Add page custom and add code:
$_SESSION["curpage"] = $comp_model->view->form_data["request_uri"];
In action After Add add code:
redirect_to_page($_SESSION["curpage"]);exit;
Hope this helps someone.