Global Announce Out Of Topic,how?


Subject: Global Announce Out Of Topic,how?
hello..

its posible to get this:so that global announce and annonuce go also out of topics in main page forum like in phpBB2 1.53

see pics

boardannounce

boardannounce01

boardannounce02

thanks

Subject: Re: Global Announce Out Of Topic,how?
I you are refering to show them at the portal, there is a CMS block. Tick the "Show in portal" tag and enable the block.

Profile PM  
Subject: Re: Global Announce Out Of Topic,how?
novice programmer wrote: [View Post]
I you are refering to show them at the portal, there is a CMS block. Tick the "Show in portal" tag and enable the block.


noin portal , in forum i mean

Subject: Re: Global Announce Out Of Topic,how?
The announcement mod.

Then (perhaps) you can add html code to make it look like a topic. you click on it and it directs you whatever you want.

Profile PM  
Subject: Re: Global Announce Out Of Topic,how?
novice programmer wrote: [View Post]
The announcement mod.

Then (perhaps) you can add html code to make it look like a topic. you click on it and it directs you whatever you want.


yes , but i dunno how :oops:

realy i want than when i post global announce or announce that is automatcly in normal sections and in top of forum like in my picture ,phpBB2 1.53 have this integrated but i dunno how to get this on icyphoenix

Subject: Re: Global Announce Out Of Topic,how?
To achieve this you need to create a new SQL which retrieve the Global Announcements in the Forum Index.

Something like this:
Code: [Download] [Hide] [Select]
$sql = "SELECT t.*, u.username, u.user_id, u2.username as user2, u2.user_id as id2, p.post_time, p.post_username
FROM " . TOPICS_TABLE . " t, " . USERS_TABLE . " u, " . POSTS_TABLE . " p, " . USERS_TABLE . " u2
WHERE t.topic_poster = u.user_id
AND p.post_id = t.topic_last_post_id
AND p.poster_id = u2.user_id
AND t.topic_type = " . POST_GLOBAL_ANNOUNCE . "
ORDER BY t.topic_last_post_id DESC";

if(!($result = $db->sql_query($sql)))
{
message_die(GENERAL_ERROR, "Couldn't obtain topic information", "", __LINE__, __FILE__, $sql);
}

$topic_rowset = array();
$total_announcements = 0;
while($row = $db->sql_fetchrow($result))
{
$topic_rowset[] = $row;
$total_announcements++;
}

$db->sql_freeresult($result);

Subject: Re: Global Announce Out Of Topic,how?
Also could be hardcoding a HTML CMS new block to get the same appearance as a thread link.

Profile PM  

Page 1 of 1


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.1943s (PHP: 10% SQL: 90%)
SQL queries: 10 - Debug Off - GZIP Enabled