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 - Loda

Pages: 1 ... 22 23 24 25 [26]
376
thanks..

but i want to see the Users logging table only at the ACP. i don't want to see the table on every page in the galerie. what have i to do to hide this on the pages?

377
Quote
Is everything ok in here ? If so, any other suggestions to expand this MOD ?

yes! it works fine, but.. i see the list on every page at the beginning..
is it possible to see the Users logging table in an extra page?? and not on all page in the head of my sites??

378
I think we will have remove this mod, because noboby can help us :roll:

read this at the beginning:
Quote
To instal this MOD the dropdown for custom fields mod is required   http://www.4homepages.de/forum/index.php?topic=7112.0

379
Mods & Plugins (Releases & Support) / Re: [Mod] Photo Of The Day
« on: August 23, 2005, 02:24:52 PM »
if you want to show the potd for the current month:

open /includes/functions.php
find in the potd mode:
Code: [Select]
        WHERE i.image_active = 1 AND i.cat_id NOT IN ($cat_id_sql) AND c.cat_id = i.cat_id
 


replace it with:
 
Code: [Select]
WHERE i.image_active = 1 AND i.cat_id NOT IN ($cat_id_sql) AND c.cat_id = i.cat_id AND i.image_date >= ".(mktime(0, 0, 0, date("m")  , 1, date("Y")))."
         

380
Mods & Plugins (Requests & Discussions) / Re: Picture of the month
« on: August 11, 2005, 08:42:43 PM »
einzelne categorie:
nach:
Code: [Select]
$sql = "SELECT i.image_id, i.user_id, i.cat_id, i.image_name, i.image_thumb_file, i.image_media_file, i.image_thumb_file, i.image_rating, i.image_votes, i.image_comments, c.cat_name, u.user_name, i.image_downloads, i.image_hits, i.image_potm, i.image_potm_date, i.image_potm_votes
        FROM ".IMAGES_TABLE." i, ".CATEGORIES_TABLE." c, ".USERS_TABLE." u
        WHERE i.image_active = 1 AND i.cat_id NOT IN ($cat_id_sql) AND i.cat_id = c.cat_id AND i.user_id = u.user_id $cat_match_sql ".$sql_datum."

das einfügen:
Code: [Select]
AND i.cat_id IN (x)x=deine id für deine categorie

381
Mods & Plugins (Requests & Discussions) / Re: Top Images of month?
« on: July 20, 2005, 06:56:06 PM »
hallo!
ersetze mal diese zeile:
Code: [Select]
WHERE i.image_active = 1 AND i.cat_id NOT IN ($cat_id_sql) AND i.cat_id = c.cat_id durch diese:
Code: [Select]
WHERE i.image_active = 1 AND i.cat_id NOT IN ($cat_id_sql) AND i.cat_id = c.cat_id AND i.image_date >= ".(mktime(0, 0, 0, date("m")  , 1, date("Y")))."
ich glaube, es müsste gehen..
ansonsten mal die suchfunktion benutzen.

Pages: 1 ... 22 23 24 25 [26]