Forum Activity for @paul
Hi - Welcome to Jamroom.
That wording is a pre-configured admin blog. Go to your admin profile page and click on Blog in the profile menu, then the update icon (the star button). You can edit the text there.
The social media links are edited in the skin configuration pages via the ACP.
Hope this helps.
updated by @paul: 03/26/19 01:31:58AM
Error 500 - No Access
Using Jamroom
These are server errors. I’d suggest the first thing to do is to look at your server error logs to see if there any indications of the problems there.
Jamroom should be able to run in its own subfolder, but again the error logs may give some clues about this.
Hth
Order of Galleries on Gallery list
Using Jamroom
Hi Lorna - Sorry for the delay on this.
Have checked your link. The problem here is that with the 'Allow Image Ordering' set, the gallery module is hard coded to order images by 'gallery_order' and not 'newest first'. As I said above, by default, when creating an image, 'gallery_order' gets set to zero, so newly uploaded images show first, ready to be manually ordered.
In order to make your existing galleries show in a 'newest first' order after turning on this option, I ran a query on your gallery datastore to set each 'gallery_order' = 200000 - 'gallery item_id'. This worked at the time of change over, but as you now see, new gallery images get their order value set to zero, hence they show first.
I cannot think of a solution to this as its the way the Gallery module is designed to work with this user option. Could maybe do something with a custom module, but first decide how critical this is to your users before we go down that road.
Thanks - Paul
Recycle bin ...added control?
Using Jamroom
Hi Strumelia
You can set the number of days items are kept in the recycle bin -
ACP=>Core=>System Core=>Global Config=>Recycle Bin tab
Set the days there.
Hope this helps
List of Pending Users shows only recently pending.
Using Jamroom
This has been fixed in the next release of the module.
Thanks for bringing it to our attention.
translating my site
Design and Skin Customization
Run the Integrity Check to get the new language strings added in.
translating my site
Design and Skin Customization
Sorry - wrong language function used

Use this code instead -
function jrGroupDiscuss_user_config_listener($_data, $_user, $_conf, $_args, $event)
{
// $_data = User Info
// $_args = Group Info
$lang = jrUser_load_lang_strings();
$val = 'on';
if (isset($_args['group_member']["{$_data['_user_id']}"]['jrGroupDiscuss_config_allowed']) && jrCore_checktype($_args['group_member']["{$_data['_user_id']}"]['jrGroupDiscuss_config_allowed'], 'onoff')) {
$val = $_args['group_member']["{$_data['_user_id']}"]['jrGroupDiscuss_config_allowed'];
}
$_tmp = array(
'name' => 'jrGroupDiscuss_config_allowed',
'label' => $lang['jrGroupDiscuss'][36],
'help' => $lang['jrGroupDiscuss'][37],
'type' => 'checkbox',
'validate' => 'onoff',
'value' => $val,
'default' => 'off',
'required' => true
);
jrCore_form_field_create($_tmp);
return $_data;
}
updated by @paul: 12/17/18 06:58:40AM
translating my site
Design and Skin Customization
I'm posting the changes here as there are other changes in the module that are still under test so I cannot relese it as yet, so if you make these changes to your current version of the GroupDiscuss module (and your GroupFiles module), you should be ok.
jrGroupDiscuss/lang/en-US.php - add in IDs 36 and 37 =
$lang[30] = 'Success - you are now following this group';
$lang[31] = 'You are no longer following this group';
$lang[32] = 'Group Watch';
$lang[33] = 'When you are watching a group for new discussionss how do you want to be notified?';
$lang[34] = 'started';
$lang[35] = 'replies';
$lang[36] = 'can create discussions';
$lang[37] = 'If checked, this User will be allowed to create discussions in this Group';
jrGroupDiscuss/include.php - replace the jrGroupDiscuss_user_config_listener function with this -
function jrGroupDiscuss_user_config_listener($_data, $_user, $_conf, $_args, $event)
{
// $_data = User Info
// $_args = Group Info
$lang = jrUser_get_languages();
$val = 'on';
if (isset($_args['group_member']["{$_data['_user_id']}"]['jrGroupDiscuss_config_allowed']) && jrCore_checktype($_args['group_member']["{$_data['_user_id']}"]['jrGroupDiscuss_config_allowed'], 'onoff')) {
$val = $_args['group_member']["{$_data['_user_id']}"]['jrGroupDiscuss_config_allowed'];
}
$_tmp = array(
'name' => 'jrGroupDiscuss_config_allowed',
'label' => $lang['jrGroupDiscuss'][36],
'help' => $lang['jrGroupDiscuss'][37],
'type' => 'checkbox',
'validate' => 'onoff',
'value' => $val,
'default' => 'off',
'required' => true
);
jrCore_form_field_create($_tmp);
return $_data;
}
Hope that helps
translating my site
Design and Skin Customization
Hi Swen - Sorry, I took a quick look at your screen shots and wrongly assumed that they were ACP views.
The 'Can Create Discussions' text comes from the jrGroupDiscuss_user_config_listener() function in the GroupDiscuss module and that does look to be hard coded. I'll get that fixed up and released asap so that you can then translate it.
The 'Can Create Files' text is again hard coded but in your custom GroupFiles module so I suggest that when I release the GroupDiscuss module, you checkout the changes there with respect to this and apply them to your module.
hth