Per Ray's instructions (and yours) - I've looked in confirm.php and it does have a redirect - but that was from the default page that was in powerstore. If that's not supposed to be like that, why is it shipped like this?
Here's what it looks like (just that part):
<?php
// WA eCart Store Cart Details in Db
if (isset($_POST["Submit_order"])) // Trigger
{
$WA_connection = $localhost;
$WA_table = "orderdetails";
$WA_redirectURL = "checkout_success.php";
$WA_indexField = "DetailOrderID";
So are you saying I should remove the $WA_redirectURL = "checkout_success.php"; line?
If so, will it not go to the success page once submitted?