View Single Post
  #9  
Old 14th June 2009, 09:56
mmisu120000's Avatar
mmisu120000 mmisu120000 is offline
Senior Member
 
Join Date: Jun 2009
P2P
Posts: 202
Default
Quote:
Originally Posted by Syn View Post
Bump:

Any one can tell me where exatcly do i need to search for it, coz i was trying to find it and couldnt. This is for donate to us text..

find this piece of code in header.php (within include/templates/<your template> dir) :
Code:
if (isset($CURUSER))
{
    $Progress_so_far = ($Progress_so_far >= 100 ? '100' : number_format($Progress_so_far, 1));
    echo '<div id="donation"><font class="small"><a href="'.$BASEURL.'/donate.php" onclick="window.open(\''.$BASEURL.'/scripts/pbar/ts_donation_status.php\',\'ts_donation_status\',\'toolbar=no, scrollbars=no, resizable=no, width=600, height=300, top=250, left=250\'); return false;">'.$lang->header['donate'].'</a></font><div style="width: 80px; border: 1px solid black; text-align: left; background: #376088 repeat;"><div style="padding-left: 0px; color: white; font-weight: bold; width: '.$Progress_so_far.'%; border: 0px solid black; font-size: 8pt; background: #4A81B6 repeat;">&nbsp;'.number_format($Progress_so_far, 1).'%'.($Progress_so_far >= 100 ? '&nbsp;<font class="small">'.$lang->header['thanks'].'</font>' : '').'</div></div></div>';
}
and delete it (or comment it with /* ... */)
Reply With Quote