1
Mods & Plugins (Releases & Support) / Re: [MOD] Histogram
« on: February 19, 2010, 07:14:01 AM »
that'll look nice.. isn't it..
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
if ( $user_info['user_level'] == GUEST ) {
$comment_user_profile_link = "";
} else {
if ( $comment_user_id == -1 ) {
$comment_user_profile_link = "";
} else {
$comment_user_profile_link = $site_sess->url(ROOT_PATH."member.php?action=showprofile&user_id=".$comment_user_id);
}
}
$comment_user_link = ($comment_user_profile_link) ? "<a href=\"".$comment_user_profile_link."\">".$comment_user_name."</a>" : $comment_user_name;
"comment_user_name" => $comment_user_profile_link,
@ d1eter ...
... I just saw the perfect working histogram incl. a histogram-info translation in english on your website ...
... looks very nice ...
The file available for registered members only. Register then you can download the package.
I've checked and re-checked several times.. following the guidance from this thread.
... you're certain ... ? ... and also this ... ?@all
... I redesigned this MOD with some fixes ...
... you can download all neccesary files and the installations instruction ... here ...
...
what is the correct syntax?....Code: [Select]define('TIME_OFFSET', 7);
QuoteQuotemartrix wrote:it's pretty much simple
It would be very nice, if somebody could write how to add this nonono.gif modification to 4images and how to mask the {media_src} url.
open templates/<yourtemplate>/media/jpg.html (this example for jpg.html template, but u'll need do same thing for all others templates for images)
ReplaceCode: [Select]<img src="{media_src}" border="1" alt="{image_name}"{width_height} />
with:Code: [Select]
<table style="background: url({media_src}) no-repeat; background-position: center center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="{template_url}/images/spacer.gif" border="1" alt="{image_name}"{width_height} /></td>
</tr>
</table>
asume that u have spacer.gif file in /templates/<yourtemplate>/images/ folder.