Quote Originally Posted by y051313 View Post
Hi lat9

We've find a solution with for the reward_point_full_suite 25.e issue (https://www.zen-cart.com/downloads.php?do=file&id=704 latest version).

It looks like the $_POST parameter was not passed into the reward module, so we have used session instead of post.

The change was made on /includes/modules/order_total/ot_reward_points.php, in function function collect_posts(), add below code
PHP Code:
if (isset($_SESSION['redeem_flag']) && $_SESSION['redeem_flag'])
            
$_POST['redeem_flag'] = $_SESSION['redeem_flag']; 
Besides, /includes/modules/page/checkout_one_confirmation/header_php.php, add below code after the "require_once (DIR_WS_CLASSES . 'http_client.php');
"
PHP Code:
if((isset($_POST['redeem_flag']) && $_POST['redeem_flag']))
    
$_SESSION['redeem_flag'] = $_POST['redeem_flag'];
else
    unset(
$_SESSION['redeem_flag']); 

Best
Davis
Thanks for that, Davis. I will update the OPC readme with integration notes and identify those changes as required when a store also uses ot_reward_points.