Show Posts

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.


Messages - threelum

Pages: [1] 2
1
thanks V@no,  :D

i'm searching long time to find this option

geez threelum

2
ich gehe immer so vor.

1. Bild in gewünschten template ordner kopieren

2. bild an gewünschter stelle im template einfügen, am besten mit den bilddimensionen

Code: [Select]
<img src="images/neues_bild.gif" width="83" height="15">

3. vor dem relativen link dann {template_url}/ einfügen.

Code: [Select]
<img src="{template_url}/images/neues_bild.gif" width="83" height="15">

 :D

3
das {msg} tag zeigt usern auf den verschiedenen seiten hinweise auf aktionen an.

z.B wenn du in den categories ein bild zur lightbox hinzufügst oder entfernst wird an der plazierung des {msg} tags "added to the lightbox" oder "deleted from the lightbox" angezeigt.

oder wenn du in einem formfeld einen eintrag vergißt z.b. bei der registrierung die emailadresse.

den message text kannst du in der jeweiligen /lang/english(german)/main.php ändern. Alle tags mit "???_msg"

geez threelum

4
du mußt natürlich in jedem template (.html) die gewünschte suchfunktion einbauen.

Code: [Select]
<form method="post" action="{url_search}">
              <table border="0" cellspacing="0" cellpadding="1">
                <tr>
                  <td>
                    <input type="text" name="search_keywords" size="15" class="searchinput" />
                  </td>
                  <td>
                    <input type="submit" value="{lang_search}" class="button" name="submit" />
                  </td>
                </tr>
                <tr valign="top">
                  <td colspan="2"><a href="{url_search}" class="smalltext">{lang_advanced_search}</a></td>
                </tr>
              </table>
            </form>


greets
threelum

5
hallo,

ich möchte meine Bildverwaltung so aufbauen, das es maincategories (ohne bilder) gibt, die dann verschiedenen subcategories (mit Bilder) enthalten. wenn man die maincatgorie auswählt, sollen alle bilder der enthaltenen subcategories angezeigt werden und wenn man die subcategories anwählt sollen nur die bilder der subcategorie angezeigt werden.

z.B. das bei auswahl der maincat people die bilder der subcats portrait, men, women, children angezeigt werden und das bei der auswahl der subcat wie bisher die jeweiligen bilder der subcat angezeigt werden.

people (maincat)
- portrait
- men
- women
- children
architecture
(maincat)
- buildings
- monuments


__________
vielen dank
threelum

6
Templates & Styles (Requests & Discussions) / Bild VOR / ZURÜCK ICON
« on: December 04, 2002, 12:41:42 AM »
du darfst nicht die image_url sondern den image_name ändern. Hier zwei Beispiele für einen link.

1. Sonderzeichenlink

&laquo; für zurück und &raquo; für vor verwenden

Code sieht dann folgendermassen aus.

Orginalcode:

Code: [Select]
<a href="{prev_image_url}">{prev_image_name}</a>

Angepasster Code für << Symbollink:

Code: [Select]
<a href="{prev_image_url}">&laquo;</a


2. Buttonlink

du kannst dir natürlich auch zwei buttons machen (vor & zurück) und diesen als link verwenden. dafür ist schon ein auskommentierter code (wird normalerweise für eine thumb vorschau auf das nächste bzw. vorherige bild verwendet) in der detail.html vorhanden, den du nur mit dem link zu deinen buttons modifizierst.

vorhandener code:
Quote
<!-- <br /><br /><a href="{next_image_url}"><img src="{next_thumb_file}" border="1"></a> -->


in die img src setzt du den link für deine buttons und entfernst den auskommentiercode <!-- -->

modifizierter code:
Quote
<br /><br /><a href="{next_image_url}"><img src="dein_button_1.gif" border="0"></a>


alles klar?

geez threelum

7
Mods & Plugins (Releases & Support) / [Mod] Toplist altered
« on: November 17, 2002, 06:27:37 PM »
look at the code,

you have now 5 categories in the top.php and the new one is comments. you must add the new comment tag in the ../lang/english(deutsch)/main.php. It is only for the new comments header {lang_top_image_comments} in the top.html and you must modify in all language packs you are use.

1. add the comments description in the image details

Code: [Select]

//-----------------------------------------------------
//--- Image Details --------------------------------
//-----------------------------------------------------

$lang['hits'] = "Hits:";
$lang['downloads'] = "Downloads:";
$lang['rating'] = "Rating:";
$lang['votes'] = "Vote(s)";
$lang['comments']="Comments";


2. add the comments tag the top images details and if you have set more then 10 Top images you must change this to your prefer (5,20,50,?). look to the top.html here is the {lang_top_image_comments}

Code: [Select]

//-----------------------------------------------------
//--- Top Images --------------------------------------
//-----------------------------------------------------
$lang['top_image_hits'] = "Top 10 images by hits";
$lang['top_image_downloads'] = "Top 10 images by downloads";
$lang['top_image_rating'] = "Top 10 images by rating";
$lang['top_image_votes'] = "Top 10 images by votes";
$lang['top_image_comments'] = "Top 10 images by comments";


3. change of top.html for the new thumbnails

add a new tablerow for the thumbnails. in the new cells you write the thumb tag {image_hits_thumb_1} {image_downloads_thumb_1} {image_rating_thumb_1} {image_votes_thumb_1} and so on (_2, _3, _4,...) for the different top categories.

4. change the top.html for the new comment category

add new tablecells for the new top comments category. in the header you write {lang_top_image_comments} and in the cells you write the same as in the hits, downloads, rating,... but modifying the new comments tag z.B. {image_comments_thumb_1} {image_comments_1} {image_comments_user_1} {image_comments_cat_1} {image_comments_number_1} and so on (_2, _3, _4,...).

 i hope it's clear
 
 much fun threelum

8
Mods & Plugins (Releases & Support) / [Mod] Toplist altered
« on: November 16, 2002, 07:41:05 PM »
thanks Vraxor  :D  :D  :D

it works fine with v1.7

9
ich habe bei den Thumbnails die image_file_size angegeben. Gibt es eine Möglichkeit die image_file_size aller Bilder im Leuchtkasten zu addieren, sodas man die ~Größe des Downloads (800kb) angezeigt bekommt?

z.B download lightbox (800KB)

vielen dank.

10
Templates & Styles (Requests & Discussions) / CSS-Style: Was ist was ?
« on: September 01, 2002, 01:44:30 AM »
für alle eine kleine Beschreibung der Startseite. Für die anderen Seiten hab ich noch keine Zeit gefunden sind aber bis auf ein paar Kleinigkeiten gleich.

Beschreibung findet ihr hier >>> http://www.threelum.com/4images.gif

ps.: Fahre heute für eine Woche ans Meer, vom Streß relaxen. Werde mich dann wieder melden und ein paar Templates zur Verfügung stellen.

greets
threelum

11
Chit Chat / Providerwechsel
« on: August 28, 2002, 06:18:54 PM »
alles wissenswerte zum Providerwechsel findest du auf  http://www.denic.de/doc/faq/updates.html

seeYa
threelum

12
Installation, Update & Configuration / Update auf 1.7
« on: August 28, 2002, 01:37:44 PM »
meine threelum fotoseite mit 4 images auf candan server - Installation und wartung von 4images war problemlos
oder andere meine 3lum fotoseite ohne 4images auf canadischem server

das viel bessere Angebot hat candan und eine deutsche beschreibung des allgemeinen geschäftsbedingungen, die ja nicht ganz unwichtig sind und für mich in deutsch besser verständlich sind.

seeYa
threelum

13
Installation, Update & Configuration / Update auf 1.7
« on: August 28, 2002, 10:55:29 AM »
für webspace kann ich candan empfehlen. hatte bisher noch nie probleme, guter support und günstig. eine leistungs- und preisübersicht findest du unter https://canssl.de/cgi-bin/menue0001.pl?FREIGABE=0

geez
threelum

14
Templates & Styles (Requests & Discussions) / CSS-Style: Was ist was ?
« on: August 28, 2002, 10:38:19 AM »
hab zur zeit etwas viel arbeit, werde es dir aber noch diese wochenende schicken.

seeYa
threelum

15
go to your ../template/thumbnail_bit.html and remove

({user_name_link})

p.s. great photos

Pages: [1] 2