[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-05-30T08:45:39-07:00 https://integramod.com/forum/feed.php?f=17&t=962 2006-05-30T08:45:39-07:00 2006-05-30T08:45:39-07:00 https://integramod.com/forum/viewtopic.php?t=962&p=7885#p7885 <![CDATA[Re: How do I disable Sticky, Announce and Calendar in users]]>

Statistics: Posted Author: found it — Tue May 30, 2006 8:45 am


]]>
2006-05-30T08:22:59-07:00 2006-05-30T08:22:59-07:00 https://integramod.com/forum/viewtopic.php?t=962&p=7881#p7881 <![CDATA[Re: How do I disable Sticky, Announce and Calendar in users]]>
"found it";p="7876" wrote:
wow i got a pm that looks just like that....


I'm a PM whore :xo: you All.

Statistics: Posted Author: jolin — Tue May 30, 2006 8:22 am


]]>
2006-05-30T08:03:23-07:00 2006-05-30T08:03:23-07:00 https://integramod.com/forum/viewtopic.php?t=962&p=7876#p7876 <![CDATA[Re: How do I disable Sticky, Announce and Calendar in users]]>
I can't belive I missed it :roll:

It hiddes the components but also from the Admin?
(It works well for me when I'm hidding the shoutbox and calender on index_body.tpl for instance but not on posting_body.php :mrgreen: <img>

Statistics: Posted Author: found it — Tue May 30, 2006 8:03 am


]]>
2006-05-29T17:44:08-07:00 2006-05-29T17:44:08-07:00 https://integramod.com/forum/viewtopic.php?t=962&p=7815#p7815 <![CDATA[Re: How do I disable Sticky, Announce and Calendar in users]]>
I can't belive I missed it :roll:

It hiddes the components but also from the Admin?
(It works well for me when I'm hidding the shoutbox and calender on index_body.tpl for instance but not on posting_body.php <img> )

Any Ideas?

Statistics: Posted Author: jolin — Mon May 29, 2006 5:44 pm


]]>
2006-05-28T12:38:31-07:00 2006-05-28T12:38:31-07:00 https://integramod.com/forum/viewtopic.php?t=962&p=7650#p7650 <![CDATA[How do I disable Sticky, Announce and Calendar in users post]]>
A

Statistics: Posted Author: Adrian Rea — Sun May 28, 2006 12:38 pm


]]>
2006-05-28T09:50:32-07:00 2006-05-28T09:50:32-07:00 https://integramod.com/forum/viewtopic.php?t=962&p=7641#p7641 <![CDATA[How do I disable Sticky, Announce and Calendar in users post]]>
How do I disable the ability for users to Post topics as Sticky, Announcement, Global Announcement and create Calendar events???

(Basiclly the same settings as here on Intergramod2.com - posting.php)

Is there a control through the ACP I'm missing?

I tried deploying a switch_admin_only mod but for some reason it didn't work?

############################################### ##   Hack Title]http://www.phpbbhacks.com/forums[/url] for support. ############################################### ## ############################################### ##   This hack is released under the GPL License. ##   This hack can be freely used, but not distributed, without permission. ##   Intellectual Property is retained by the hack author(s) listed above. ###############################################  # #-----[ OPEN ]------------------------------------------ #    includes/page_header.php # #-----[ FIND ]------------------------------------------ # // // Login box? // if ( !$userdata['session_logged_in'] ) {    $template->assign_block_vars('switch_user_logged_out', array()); } else {    $template->assign_block_vars('switch_user_logged_in', array());      if ( !empty($userdata['user_popup_pm']) )    {       $template->assign_block_vars('switch_enable_pm_popup', array());    } } # #-----[ AFTER - ADD ]------------------------------------------ # if ( $userdata['user_level'] == MOD ) {    $template->assign_block_vars('moderators_only', array()); } else if ( $userdata['user_level'] == ADMIN ) {    $template->assign_block_vars('admins_only', array()); } else if ( $userdata['user_level'] == MOD || $userdata['user_level'] == ADMIN ) {    $template->assign_block_vars('admins_and_moderators_only', array()); } # #-----[ STOP ]------------------------------------------ # This is where you need to determine which switches you want to add.  Below is the code for ADMINS ONLY, MODERATORS ONLY and for both MODS AND ADMINS.  Find the proper content that you want to hide and add the BEGIN switch just before and add the END switch just after your content.  -------   ADMIN ONLY SWITCHES --------  # #-----[ OPEN ]------------------------------------------ #    templates/subSilver/* # #-----[ BEFORE - ADD ]------------------------------------------ #    <BEGIN> # #-----[ AFTER - ADD ]------------------------------------------ #    <END> # #----------------------------------------------- #  -------   MODERATOR ONLY SWITCHES --------  # #-----[ OPEN ]------------------------------------------ #    templates/subSilver/* # #-----[ BEFORE - ADD ]------------------------------------------ #    <BEGIN> # #-----[ AFTER - ADD ]------------------------------------------ #    <END> # #----------------------------------------------- #  -------   MODERATOR & ADMINS ONLY SWITCHES --------  # #-----[ OPEN ]------------------------------------------ #    templates/subSilver/* # #-----[ BEFORE - ADD ]------------------------------------------ #    <BEGIN> # #-----[ AFTER - ADD ]------------------------------------------ #    <END> # #-----[ SAVE & CLOSE ALL FILES ]-------------------------- # #End  

Statistics: Posted Author: jolin — Sun May 28, 2006 9:50 am


]]>