Forum Activity for @paul

paul
@paul
06/25/16 05:52:13AM
4,335 posts

How to add a comment count under the audio and video item detail page?


Using Jamroom

If an item has one or more comments on it there will be a smarty variable of the number of comments, so in your template use something like this -

Number of comments: {$item.audio_comment_count|default:0}

The default modifier is there incase the variable doesn't yet exist (when an item has no comments as yet).
For videos the variable would be $item.video_comment_count

hth
paul
@paul
06/25/16 05:43:32AM
4,335 posts

youtube limit error


Using Jamroom

Thanks - This is fixed in the next release of the YouTube module
paul
@paul
06/23/16 03:14:30AM
4,335 posts

What do you love about Jamroom 5 right now?


Off Topic

I like using Site Builder to easily and quickly put together new sites and pages.
paul
@paul
06/23/16 02:25:07AM
4,335 posts

Is there a way to limit the privacy settings for members?


Using Jamroom

So when you login as 'jdychn' you see the privacy select field? If so let me have her password so that I can check it out.
paul
@paul
06/22/16 12:13:04PM
4,335 posts

Is there a way to limit the privacy settings for members?


Using Jamroom

I've just logged into your site as ordinary user 'pasher' (in the example quota) and am not seeing the field to change my privacy. Are you sure that members who are still able to change their privacy status are in quotas with this field disabled?
paul
@paul
06/22/16 10:53:38AM
4,335 posts

Is there a way to limit the privacy settings for members?


Using Jamroom

If you are viewing a profile update page as admin you will still see the privacy options.
Also, if the profile is themselves an admin they will see the field.
Only if they are ordinary users and in a quota with that field disabled will they not see it.
hth
paul
@paul
06/19/16 12:20:52AM
4,335 posts

Double slash in urls in the Quota Compare


Using Jamroom

I have this fixed in the next release of the Profile module.
However, even with the double slash it wasn't causing any problems for me. Maybe your browser?
Anyway - thanks for letting us know about it.
Paul
paul
@paul
06/18/16 11:37:57AM
4,335 posts

Particular Notification option missing?


Using Jamroom

ACP=>Profiles=>Groups=>Language Tab
Notification text strings are IDs 53-58 inc.
hth
paul
@paul
06/17/16 08:58:27AM
4,335 posts

jcore Lists that only show logged in users material?


Using Jamroom

Unfortunately, searching for items of online users isn't supported directly in Jamroom. I can only suggest some custom template code that would first detect all online users then add them specifically to the search jrCore_list call. The code below isn't very elegant but works and in this example searches for the videos of logged in users -

{$_online = jrUser_session_online_user_info()}
{$pids = ''}
{if is_array($_online) and count($_online) > 0}
    {$_tmp = array()}
	{foreach $_online as $online}
        {$_tmp[] = $online['session_profile_id']}
    {/foreach}
    {$pids = implode(',', $_tmp)}
{/if}
{jrCore_list module="jrVideo" search="_profile_id IN `$pids`"}
hth
paul
@paul
06/17/16 07:06:41AM
4,335 posts

{if} statement - works in some templates not in others


Jamroom Developers

When viewing profile templates there is just the one profile so any profile variables don't need to be part of an array, so that is whey they are available as their actual key value. If its a listing template that shows many groups, that's when they are an item in an array.
When working with templates alway do a {debug} call initially so as to see what variables (and their format) you have to play with.
hth
  209