How to change the default settings for Notifications?
Using Jamroom
only admin gets notified when new members join the network
<img src="(some url)" alt="description of the image">
{jrCore_image skin="jrYourSkinHere" image="menu.png" alt="menu"}
|truncate:200
{$item.comment_text}
{$item.comment_text|truncate:200}
// radio Title
$_tmp = array(
'name' => 'radio_title',
'label' => 3,
'help' => 4,
'type' => 'text',
'validate' => 'printable',
'required' => true,
'onkeypress' => "if (event && event.keyCode == 13) return false;"
);
jrCore_form_field_create($_tmp);
$_tmp = array(
'name' => 'radio_checkbox',
'default' => 'off',
'type' => 'checkbox',
'validate' => 'onoff',
'required' => 'off',
'label' => "The Checkbox",
'help' => "You can add your explanation of what its for here"
);
jrCore_form_field_create($_tmp);