How do I make a page that shows after order is completed?

How do I make a page that shows after order is completed?

First let me tell you I have some payment options that will not integrate into Cs-cart and some that do.

I am looking to do a “Thank you for your order” and some other comments

Thanks for any help with this

Create your “page” normally but make it “hidden” rather than “active”.

Add a controllers/customer/checkout.post.php file to your my_changes addon directory.

Add code similar to:


if( $mode == 'complete' && $_SERVER['REQUEST_METHOD'] != 'POST' )
fn_redirect();

Here are some links that will help you as well: [url=“CS-Cart Documentation — CS-Cart 4.15.x documentation”]CS-Cart Documentation — CS-Cart 4.15.x documentation