Set a message for at the top of the Donate page not working
Rick Hood - October 4, 2009 - 17:11
| Project: | Ubercart Donation Products |
| Version: | 6.x-2.0-beta3 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
Set a message for at the top of the Donate page text does not appear at top of /donate page.
Using 6.x-2.0-rc7 Ubercart. Using Burnt theme.
Thanks - appreciate you work on this module.

#1
It seems like something like this needs to be added around line 200 in uc_donate.page.inc:
else {
$span = variable_get('uc_currency_sign', '$') .'<span></span>';
}
/*---begin addition---*/
$donate_header = variable_get('uc_donate_description','');
$output = '<div id="donate-header">' . $donate_header . '</div>';
/*---end addition---*/
$output .= '<div id="donate-page">';
$output .= '<div id="donate-items">'. $items .'</div>';