Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post 
Post 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
 




____________
We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
 
LimunSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post 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.
 



 
novice programmerSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 




____________
We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
 
LimunSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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.
 



 
novice programmerSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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  

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
 




____________
We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
 
LimunSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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);

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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.
 



 
novice programmerSend private message  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron