Aktuelle Themen

Aktuelle Version: 1.0.6
Veröffentlicht: 01.09.10
Forum rules
Vor dem erstellen neuer Supportanfragen bitte zuerst in die board3 Portal FAQ schauen und die Suche benutzen!
Viele Fragen sind bereits schon gestellt und beantwortet worden.
Bitte auch unsere Forumsregeln lesen und beachten!
Locked

Topic author
absolute_beginner
Active Member
Posts: 21
Joined: 12. July 2008 16:00

Aktuelle Themen

Post by absolute_beginner »

Hello guys!

Mir ist aufgefallen, dass in den 'Aktuellen Themen' in der Portals-Ansicht die als 'Wichtig' deklarierten Beiträge nicht angezeigt werden.
Ist das so beabsichtigt bzw. wäre es möglich diese somehow einzubinden?

Greetz,
Beginner
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Aktuelle Themen

Post by Kevin »

Nettes Denglisch...
Hast du somehow gecheckt ob du diese Option activated hast? ;)
Zeige alle Beiträge dieses Forums:
Inklusive Wichtigen.
In your face

Kevin
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!

Topic author
absolute_beginner
Active Member
Posts: 21
Joined: 12. July 2008 16:00

Re: Aktuelle Themen

Post by absolute_beginner »

Hi Kevin!

Ich hab' eigentlich bei 'Aktuelle Themen' gemeint...
Image
dort sind dann (pic rechts) die 'wichtigen' Themen nicht mit aufgelistet!
Image

Die Einstellung bei den 'Aktuellen Beiträgen' wirkt sich nicht aus
Zeige alle Beiträge dieses Forums:
Inklusive Wichtigen.
...wahrscheinlich hab' ich aber auch etwas übersehen? Bekanntmachungen wären ja auch extra (mittig oder so).....

Greetz,
Beginner
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Aktuelle Themen

Post by Kevin »

Hi,

entschuldige, Missverständnis.
In diesem Block werden nur normale Themen angezeigt.

Versuch mal bitte folgendes:

recent.php

suche:

Code: Select all

$sql = 'SELECT topic_title, forum_id, topic_id
    FROM ' . TOPICS_TABLE . '
    WHERE topic_status <> ' . FORUM_LINK . '
        AND topic_approved = 1 
        AND topic_type = ' . POST_NORMAL . '
        AND topic_moved_id = 0
        ' . $sql_where . '
    ORDER BY topic_time DESC'; 
ersetze durch:

Code: Select all

$sql = 'SELECT topic_title, forum_id, topic_id
    FROM ' . TOPICS_TABLE . '
    WHERE topic_status <> ' . FORUM_LINK . '
        AND topic_approved = 1 
        AND topic_type = ' . POST_NORMAL . '
        AND topic_type = ' . POST_STICKY . '
        AND topic_moved_id = 0
        ' . $sql_where . '
    ORDER BY topic_time DESC'; 
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!

Topic author
absolute_beginner
Active Member
Posts: 21
Joined: 12. July 2008 16:00

Re: Aktuelle Themen

Post by absolute_beginner »

Thx for your quick reply! Komischerweise sind die 'Aktuellen Themen' (pic rechts) nun komplett weg und es sind nur noch die 'Beliebten Themen' (pic links) vorhanden.
Ich mit meinen 'On/Off' :oops: Kenntnissen kann mir leider keinen Reim darauf machen....

Greetz,
Beginner
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Aktuelle Themen

Post by Kevin »

Schulligung, mein Fehler (ich schüttel mir das gerade ungetestet aus dem Ärmel). ;)
Versuch mal diesen Code:

Code: Select all

$sql = 'SELECT topic_title, forum_id, topic_id
    FROM ' . TOPICS_TABLE . '
    WHERE topic_status <> ' . FORUM_LINK . '
        AND topic_approved = 1 
        AND (topic_type = ' . POST_NORMAL . ' OR topic_type = ' . POST_STICKY . ')
        AND topic_moved_id = 0
        ' . $sql_where . '
    ORDER BY topic_time DESC'; 
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!

Topic author
absolute_beginner
Active Member
Posts: 21
Joined: 12. July 2008 16:00

Re: Aktuelle Themen

Post by absolute_beginner »

....hätt' ich nur auch solche Ärmel!^^ :lol:

Danke! Funktioniert tadellos - mit Berechtigungsprüfung, etc.....

Greetz,
Beginner
User avatar

Kevin
Site Admin
Posts: 2989
Joined: 7. January 2006 20:11
phpBB.de User: Saint
phpBB.com User: Saint_hh
Location: Hamburg
Contact:

Re: Aktuelle Themen

Post by Kevin »

Sehr schön! :)
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~

Kein Support per PN / No support via PM!

AuroraXF
Active Member
Posts: 20
Joined: 22. July 2009 00:49
phpBB.de User: AuroraXF

Re: Aktuelle Themen

Post by AuroraXF »

Ich finde den benötigten Code teil irgendwie nicht, habe nur folgenden gefunden

Code: Select all

$sql = 'SELECT topic_title, forum_id, topic_id
	FROM ' . TOPICS_TABLE . '
	WHERE topic_status <> ' . ITEM_MOVED . '
		AND topic_approved = 1 
		AND topic_type = ' . POST_NORMAL . '
		AND topic_moved_id = 0
		' . $sql_where . '
	ORDER BY topic_time DESC';
wenn ich diesen ersetze habe ich alle themen bei aktuellen beanntmachungen drinnen stehen
Locked

Return to “board3 Portal 1.0.x - Deutscher Support”