Updated the course registration paid dropdown to match the events
Showing
2 changed files
with
10 additions
and
17 deletions
| ... | @@ -889,7 +889,7 @@ class Actions { | ... | @@ -889,7 +889,7 @@ class Actions { |
| 889 | )); | 889 | )); |
| 890 | 890 | ||
| 891 | if (isset($_POST['studentfee']) && $_POST['studentfee'] == 1) { | 891 | if (isset($_POST['studentfee']) && $_POST['studentfee'] == 1) { |
| 892 | $fee = number_format(CBVOptions\GetOption('overseas-surcharge', 'fees'), 2, '.', ''); | 892 | $fee = number_format(CBVOptions\GetOption('student-fees', 'fees'), 2, '.', ''); |
| 893 | $taxes = $calc_tax($fee, $tax_rate); | 893 | $taxes = $calc_tax($fee, $tax_rate); |
| 894 | 894 | ||
| 895 | $items_subtotal += $fee; | 895 | $items_subtotal += $fee; | ... | ... |
| ... | @@ -43,25 +43,18 @@ | ... | @@ -43,25 +43,18 @@ |
| 43 | <div class="title-link" style="display:block;color:#f7bd55; font-size: 12px;font-weight: bold;text-align: left;line-height: 1.75em; background-color: #3b0d32; border: solid 1px #FFF; border-bottom: solid 1px #999; cursor: default; padding: 0em; padding:3px 10px 3px 10px; margin: 0em;"><?php echo $course->post_title;?></div> | 43 | <div class="title-link" style="display:block;color:#f7bd55; font-size: 12px;font-weight: bold;text-align: left;line-height: 1.75em; background-color: #3b0d32; border: solid 1px #FFF; border-bottom: solid 1px #999; cursor: default; padding: 0em; padding:3px 10px 3px 10px; margin: 0em;"><?php echo $course->post_title;?></div> |
| 44 | 44 | ||
| 45 | <div class="dashboard-section" style="margin-left:20px;margin-top:10px;"> | 45 | <div class="dashboard-section" style="margin-left:20px;margin-top:10px;"> |
| 46 | <div class="dashboard-section-title">REGISTRATION STATUS</div> | 46 | <div class="dashboard-section-title">HOW TO PROCESS THE REGISTRATION:</div> |
| 47 | <div class="dashboard-section-links"></div> | ||
| 48 | <div class="dashboard-section-content small"> | ||
| 49 | <select name="status"> | ||
| 50 | <option value="paid">Paid</option> | ||
| 51 | <option value="free">Free</option> | ||
| 52 | </select> | ||
| 53 | </div> | ||
| 54 | </div> | ||
| 55 | |||
| 56 | <div class="dashboard-section" style="margin-left:20px;margin-top:10px;"> | ||
| 57 | <div class="dashboard-section-title">PAID BY</div> | ||
| 58 | <div class="dashboard-section-links"></div> | 47 | <div class="dashboard-section-links"></div> |
| 59 | <div class="dashboard-section-content small"> | 48 | <div class="dashboard-section-content small"> |
| 60 | <select name="paid_by"> | 49 | <select name="paid_by"> |
| 61 | <option value="visa">Visa</option> | 50 | <?php /* |
| 62 | <option value="mc">Mastercard</option> | 51 | <option value="unpaid">Invoice User</option> |
| 63 | <option value="amex">American Express</option> | 52 | <option value="complementary">Complementary</option> |
| 64 | <option value="cheque">Cheque</option> | 53 | */ ?> |
| 54 | <option value="visa">Paid by Prepaid Visa</option> | ||
| 55 | <option value="mc">Paid by Prepaid Mastercard</option> | ||
| 56 | <option value="amex">Paid by Prepaid American Express</option> | ||
| 57 | <option value="cheque">Paid by Cheque</option> | ||
| 65 | </select> | 58 | </select> |
| 66 | </div> | 59 | </div> |
| 67 | </div> | 60 | </div> | ... | ... |
-
Please register or sign in to post a comment