Author Topic: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache  (Read 17525 times)

0 Members and 1 Guest are viewing this topic.

Offline Prometheus

  • Newbie
  • *
  • Posts: 11
    • View Profile
Hello!
After getting my 4images basic style, it is time to have my details.htm modified on my needs. In the attachment of this post (or here: http://www.roma-aeterna.de/request.jpg) you can see, how it should look, when it's done. I know, that there is some kind of a "3-picture-mod" necessary. By klicking on the middle-sized picture, a new window should open with just the picture in its original size. I would pay 60€ (94 USD) for this, even more, if necessary.

You can contact my by
ICQ: 454934387 or
e-mail: mail@stefan-heller.net

Please, help me!
regards
Stefan

-------------------------------------

Hallo Leute!

Nachdem mir bereits das Grundtamplate für meine 4images Galerie erstellt worden ist, ist es nun nötig, das Script fertig anzupassen. Es geht wohl um die details.htm: Neben dem Bild selbst sollen die einzelnen Thumbails angezeigt werden. Wenn man auf das größere Bild klickt, soll sich das Bild in seiner Originalgröße in einem neuen Fenster (ohne 4images informationen, nur das bild) öffnen. Dafür ist wohl einer der 3-Bilder-Mods nötig. Wie es dann fertig ausehen soll, seht ihr im Anhang zu diesem Post (bzw. hier: http://www.roma-aeterna.de/request.jpg). Mir ist es super wichtig, dass das Script so fertig wird und ich würde auch mindestens 60€ dafür bezahlen.

Erreichen könnt ihr mich per
ICQ: 454934387 oder auch
e-mail: mail@stefan-heller.net

Gäbe es einen, der mir hier helfen würde, wäre ich zu großem Dank verpflichtet

Viele Grüße!
Stefan
« Last Edit: October 06, 2008, 07:35:05 PM by Prometheus »


Offline kandr

  • Newbie
  • *
  • Posts: 29
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #2 on: November 07, 2008, 12:18:17 AM »
Hallo alle. Ich bin aus Russland, so mein Deutsch ist nicht sehr gut. Ich bin auch dringend brauchen sie geändert werden. Wer kann mir helfen etwas? und wie viel kostet es?

Offline kandr

  • Newbie
  • *
  • Posts: 29
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #3 on: November 07, 2008, 12:44:43 AM »
Всем привет, оказывается тут говорят по-русски! Круто. Может все-таки кто нибудь сможет мне помочь? Нужно интегрировать мини галерею в detail.html.
Можно использовать JQuery библиотеку для этого. http://russian-ajax.ru/galleria_10_ajax_image_view/
Добавить в админку загрузки дополнительных файлов, количество по необходимости, чтобы они грузились в созданную новую папку с названием картинки те. /img.138.htm. Примерно так представляю. Пожалуйста ответьте ктонинь, очень надо! спасибо!

Offline batu544

  • Sr. Member
  • ****
  • Posts: 336
    • View Profile
    • Free Celebrity wallpapers
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #4 on: November 09, 2008, 09:55:15 PM »
Hi,
     what exactly you need ? Please explain it.. I can give a try for that .. :)



Offline nobby

  • 4images Guru
  • *******
  • Posts: 2.873
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #5 on: November 09, 2008, 10:04:24 PM »
Hi,
     what exactly you need ? Please explain it.. I can give a try for that .. :)


Hi batu544

He wants a mini-gallery in the detail.html have Incorporated.

nobby

Offline kandr

  • Newbie
  • *
  • Posts: 29
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #6 on: November 13, 2008, 01:03:15 AM »
HI, can somebody do this?

Offline bergblume

  • Sr. Member
  • ****
  • Posts: 463
  • on to the top!
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #7 on: November 13, 2008, 09:18:44 AM »
I also need this!!! would be very cool if s.o has a MOD for this or a tutorial how to realize!?

Offline alekinna

  • Jr. Member
  • **
  • Posts: 51
    • View Profile
    • Gallery of cross-stitching
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #8 on: November 13, 2008, 09:10:38 PM »
try this

1. in the file detals.php before
Code: [Select]
//-----------------------------------------------------
//--- Save Comment ------------------------------------
//-----------------------------------------------------

add this code
Code: [Select]
//-----------------------------------------------------------------
//--------------- Start MOD: Photo Preview Hack -------------------
//-------------------------------------------------------------------
$cells = 4;                   //number of cells in table
$num_thumbs = 12;    // number of thumbnails to view
$sizeTimes = 0.5;        // size of thumbnails (0.5 = half of regular thumbnail size)
//------------------------------------------END SETTINGS ---------------------------------------------------

$result = $site_db->query($sql);

while($row = $site_db->fetch_array($result)){
    $image_preview[] = $row['image_id'];
    $preview_row[$row['image_id']] = $row;
}
$lastPage = count($image_preview);
$count = 0;
$t_template = "<table width=\"1%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n";
if($lastPage < ($num_thumbs + 1)){
    $start = 0;
    $end = $lastPage -1;
} elseif ($act_key == 0 || $act_key == 1){
    $start = 0;
    $end   = ($num_thumbs - 1);
} elseif ($act_key == $lastPage-1 || $act_key == $lastPage -2){
    $start = $lastPage - $num_thumbs;
    $end = $lastPage - 1;
} else {
    $start = $act_key - (floor(($num_thumbs - 1) / 2));
    $end   = $act_key + (ceil(($num_thumbs - 1) / 2));
}

for($i=$start; $i<=$end; $i++){
if ($count == 0) {
$t_template .= "<tr>\n";
}
    if ($preview_row[$image_preview[$i]]['image_id'] == $image_row['image_id']) {
    $t_template .= "<td align=\"center\" style=\"border: 1px solid #004C75; background: #F1F1F1; padding: .1cm\">\n";
    } else {
    $t_template .= "<td align=\"center\" style=\"padding: .1cm\">\n";
    }
    $tag = get_thumbnail_code($preview_row[$image_preview[$i]]['image_media_file'], $preview_row[$image_preview[$i]]['image_thumb_file'], $preview_row[$image_preview[$i]]['image_id'], $preview_row[$image_preview[$i]]['cat_id'], format_text(trim($preview_row[$image_preview[$i]]['image_name']), 2), $mode, 1);
    $oriWidth = substr($tag, strpos($tag, "width")+7, strpos($tag, "\" height")-strlen($tag));
    $oriHeight = substr($tag, strpos($tag, "height")+8, strpos($tag, " alt")-strlen($tag)-1);
    $tag = str_replace('width="'.$oriWidth.'"', 'width="'.$oriWidth*$sizeTimes.'"', $tag);
    $tag = str_replace('height="'.$oriHeight.'"', 'height="'.$oriHeight*$sizeTimes.'"', $tag);
    $t_template .= $tag."<td>\n";
$count++;
if ($count == $cells) {
$t_template .= "</tr>\n";
$count = 0;
}
}

if ($count > 0)  {
    $leftover = ($cells - $count);
    if ($leftover >= 1) {
      for ($f = 0; $f < $leftover; $f++) {
        $t_template .= "<td>\n&nbsp;\n</td>\n";
      }
      $t_template .= "</tr>\n</table>";
    }
}
else {
$t_template .= "</table>\n";
}
$site_template->register_vars("preview_box", $t_template);
unset($image_preview);
//-------------------------------- END  MOD: Photo Preview Hack --------------------------------------

see settings and change it if need

2. in the file details.html use {preview_box} to insert mini-thumbs

Almost all code was taken from this MOD, I just did little modification

Offline bergblume

  • Sr. Member
  • ****
  • Posts: 463
  • on to the top!
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #9 on: November 13, 2008, 11:01:35 PM »
hi alekinna,

thank you for your post and your ideas in order to realize this great MOD...
but essential would be also an upload form for the other pics within detail...
so it seems that the part of adapting the member_uploadform.html is missing..
actually there is only 1 upload-field for 1 image... with this mod there shall also be more upload fields...

any idea how to realize this?

Offline alekinna

  • Jr. Member
  • **
  • Posts: 51
    • View Profile
    • Gallery of cross-stitching
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #10 on: November 14, 2008, 11:12:22 AM »
Sorry, I don't understand which images you want upload. For mini-thumbs the  MOD take some images before and after the big image that you see in the details. You can use it instead "next", "previous".

Offline bergblume

  • Sr. Member
  • ****
  • Posts: 463
  • on to the top!
    • View Profile
Re: 60€ (94USD) for modifying details.htm/ 60€ für eine besondere Sache
« Reply #11 on: November 14, 2008, 11:35:10 AM »
Sorry, I don't understand which images you want upload. For mini-thumbs the  MOD take some images before and after the big image that you see in the details. You can use it instead "next", "previous".

yes -exactly - that is the function of the mod you used and modified. what here is desired is the function that in detailed view can be uploaded more than 1 image and visiualized in a kind of mini-gallery within detailed view!!!!

the thumbs you are using are thumbs from other detailed descriptions... do you understand what I mean?

actually there is in detail view only one image (it can uploaded actually only one image in detailed description) – there shall be developed a MOD in order to upload up to 10 images in detail view and show them in a kind of mini gallery! Images must be edited and deleted within admin panel.

A screenshot of this has already been uploaded here:
http://emergency-3.de/wunsch.JPG