Three quick questions about Groups
Ning To Jamroom
A better solution for no 2 if you want complete control would be add it as a Skin setting.
You add new settings in the skins config.php file, I'll assume you're using Ningja. So something like
$_tmp = array(
'name' => 'hide_group_comment_wall',
'default' => '',
'type' => 'text',
'validate' => 'not_empty',
'label' => 'Hide Comment Wall',
'help' => "Enter the group ids of the comment walls you wish to hide, separate using commas",
'section' => 'groups',
'order' => 54
);
jrCore_register_setting('jrNingja', $_tmp);
to be added before the
return true; line
In order for new settings to show in the skin, you must run an integrity check.
I would need someone from the team to show what exact code to wrap the comments box in code however. Remember if you go this route make sure your using a clone of the skin otherwise skin updates will overwrite this change.
updated by @garymoncrieff: 04/15/15 10:48:33AM