Quote Originally Posted by Ajeh View Post
Let's say you were doing this with Check/Money Order moneyorder you could try the code in RED:
Code:
      $this->enabled = ((MODULE_PAYMENT_MONEYORDER_STATUS == 'True') ? true : false);

// bof: disable on orders less than 100
if (!IS_ADMIN_FLAG) {
  global $order;
  if ($order->info['total'] < 100) {
    $this->enabled = false;
  }
}
// eof: disable on orders less than 100
Hi Linda I have a question for you. If I didn't want a customer to checkout without entering reward points first how would create code in the Check/Money Order module to flag them to let them know. Thank You so much in advance.