The Apply Amount: box does not show unless there is a GV balance in the customer's account ...
You could change this by customizing the Gift Certificate module and change:
Code:
function selection_test() {
if ($this->user_has_gv_account($_SESSION['customer_id'])) {
return true;
} else {
return false;
}
}
to read:
Code:
function selection_test() {
if ($this->user_has_gv_account($_SESSION['customer_id'])) {
return true;
} else {
return true;
}
}
This would display the Apply Amount: with or without a current balance so that the customer can enter the GV Redeem Code, the Apply Amount, Select PayPal and click CONTINUE and when you get to the checkout_confirmation you will see the Success Message on the Redeem of the Gift Certificate and the amount entered in the Apply on the Order so that when the customer goes to PayPal the amount has been deducted ...
Bookmarks