sss
Signed-off-by: Jeff <jeff@gotenzing.com>
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -37,9 +37,9 @@ $program_info = get_field('program_info'); | ... | @@ -37,9 +37,9 @@ $program_info = get_field('program_info'); |
| 37 | <?php if(is_array($program_info['cost_&_dates'])): ?> | 37 | <?php if(is_array($program_info['cost_&_dates'])): ?> |
| 38 | <table> | 38 | <table> |
| 39 | <tr class="not"><th>Cost</th><th>Duration</th><th>Date</th></tr> | 39 | <tr class="not"><th>Cost</th><th>Duration</th><th>Date</th></tr> |
| 40 | <tr><td>PUBLIC | STAFF</td><td></td><td></td></tr> | 40 | <tr><td>PUBLIC | STAFF</td><td></td><td></td></tr> |
| 41 | <?php foreach ( $program_info['cost_&_dates'] as $cost_dates){ | 41 | <?php foreach ( $program_info['cost_&_dates'] as $cost_dates){ |
| 42 | echo "<tr><td>$".$cost_dates['cost']." $".$cost_dates['cost_staff']."</td><td>".$cost_dates['duration']."</td><td>".$cost_dates['date']."</td></tr>"; | 42 | echo "<tr><td>$".trim($cost_dates['cost'])." | $".trim($cost_dates['cost_staff'])."</td><td>".$cost_dates['duration']."</td><td>".$cost_dates['date']."</td></tr>"; |
| 43 | };?> | 43 | };?> |
| 44 | </table> | 44 | </table> |
| 45 | <?php endif; ?> | 45 | <?php endif; ?> | ... | ... |
-
Please register or sign in to post a comment