Quote Originally Posted by lat9 View Post
@Jeff_Mash, using the formatting in the tpl_modules_opc_conditions.php as a base, it looks like the reward points module needs to format its checkbox using something like
Code:
$prompt = 
    '<div class="custom-control custom-checkbox">' .
        zen_draw_checkbox_field('redeem_flag',true,isset($_SESSION['redeem_value']),' class="opc-cc-submit" id="redeem_flag"') . 
        '##' . zen_draw_hidden_field('redeem_checkout_flag',1) .
        '<label class="custom-control-label checkboxLabel" for="redeem_flag">##</label>' .
    '</div>';
You ROCK, Cindy! That did the trick!