So the next time I create new Forum I will not do the click?



Maybe a setting or change of code to make this happen?
Thank you
// Fill forum data with default values
Code: Select all
'parent_id' => $this->parent_id,
'forum_type' => FORUM_POST,
'forum_status' => ITEM_UNLOCKED,
'forum_name' => utf8_normalize_nfc(request_var('forum_name', '', true)),
'forum_link' => '',
'forum_link_track' => false,
'forum_desc' => '',
'forum_rules' => '',
'forum_rules_link' => '',
'forum_image' => '',
'forum_style' => 0,
'display_subforum_list' => true,
'display_on_index' => true,
'forum_topics_per_page' => 0,
'enable_indexing' => true,
'enable_icons' => true,
'enable_prune' => false,
'prune_days' => 7,
'prune_viewed' => 7,
'prune_freq' => 1,
'enable_shadow_prune' => false,
'prune_shadow_days' => 7,
'prune_shadow_freq' => 1,
'forum_flags' => FORUM_FLAG_POST_REVIEW + FORUM_FLAG_ACTIVE_TOPICS,
'forum_options' => 0,
'forum_password' => '',
'forum_password_confirm'=> '',
'S_ENABLE_QUICK_REPLY' => ($forum_data['forum_flags'] & FORUM_FLAG_QUICK_REPLY) ? true : false,
to 'S_ENABLE_QUICK_REPLY' => ($forum_data['forum_flags'] & FORUM_FLAG_QUICK_REPLY) != true,
. That should do it.All it needs now is to make it into an extensionNeculai Anisor wrote: ↑Tue Feb 07, 2017 10:29 amYou can do that by giving them a true value in includes/acp/acp_forums.php
Ik David! I would love to do it myself but i am new in this "extensions world". I've done just some very simple ones so far.
Well Mr. Phil you cannot count on me with that. I have no idea how to do itPhilDiscuss wrote: ↑Tue Feb 07, 2017 1:22 pmGee hee hee.. reply again,
Yeah, its good to have an extension for this. That determines the radio buttons on acp forum creation, just turn off or on.
So the core files will not be touch, virgin.
Code: Select all
'S_DISPLAY_ACTIVE_TOPICS' => ($forum_data['forum_type'] == FORUM_POST) ? ($forum_data['forum_flags'] & FORUM_FLAG_ACTIVE_TOPICS) : false,
Does he know about phpBB • phpBB3 QuickInstall - Contribution Details? Could it provide a starting point for whatever he/she is really trying to accomplish?
50.000 forums not 50.000 boards/installations.P_I wrote: ↑Wed Feb 08, 2017 11:07 pmDoes he know about phpBB • phpBB3 QuickInstall - Contribution Details? Could it provide a starting point for whatever he/she is really trying to accomplish?