Forum Activity for @douglas

douglas
@douglas
06/27/16 12:20:38PM
2,812 posts

Welcome to the Alpha Team



Welcome to the Alpha team @jimmy ! :)
updated by @douglas: 06/28/16 09:25:28AM
douglas
@douglas
06/26/16 09:07:07AM
2,812 posts

How to add the who is online for the entire site?


Using Jamroom

Your welcome! Glad that worked out for you.

Thanks!
douglas
@douglas
06/26/16 07:43:48AM
2,812 posts

How to make Audio and Video Categories (genres) a link ?


Using Jamroom

pch:
Sorry, I forgot to mention it. I am using Elastic (clone).

Elastic is not setup with a custom audio or video page, it uses the modules templates instead, you'll need custom templates created for audio and video in order to make the genre links work.

You might check out one of the other skins to see how its done and use that as guide to build your own custom audio and video templates for the Elastic skin.
douglas
@douglas
06/25/16 09:43:52AM
2,812 posts

OneAll Questions


Using Jamroom

The login and signup forms are hard coded, there aren't any templates for them out of the box.

There is a doc here where you can create your own login form and put it in your own custom login template or existing template:
https://www.jamroom.net/the-jamroom-network/documentation/howto/603/howto-add-the-user-login-form-to-any-page

I've not seen a signup form created this way, and I haven't tried myself either, so I'm not sure about that one.

You might try searching the forums to see if anyone else has come up with anything for the signup form.

Hope this helps!
douglas
@douglas
06/25/16 08:53:55AM
2,812 posts

How to add the who is online for the entire site?


Using Jamroom

If I understand what your wanting, give this a try:

{if $visitor_count > 1}
{jrCore_lang skin=$_conf.jrCore_active_skin id="#" default="Guests"  assign="gs"}
{else}
{jrCore_lang skin=$_conf.jrCore_active_skin id="#" default="Guest"  assign="gs"}
{/if}

Hope this helps!
updated by @douglas: 06/25/16 08:54:39AM
douglas
@douglas
06/24/16 12:45:47PM
2,812 posts

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


Using Jamroom

I think maybe we just misunderstood the issue.

I've not tested it, but it could be as @strumelia stated.
douglas
@douglas
06/24/16 05:29:41AM
2,812 posts

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


Using Jamroom

I really don't think there is an issue here. If you login as the user, you should not see the privacy settings since that is how you have the quota setup. If you are logged in as an admin, you'll see the privacy setting no matter what the quota settings are set to.

Try logging in as a regular user and see if the privacy settings are showing.

Hope this helps!
douglas
@douglas
06/23/16 12:04:11PM
2,812 posts

How to add the who is online for the entire site?


Using Jamroom

pch:
Yes, it is probably because of the cache. Then, users in JR are being shown twice at the same time: as logged users and as guests, because there were guest few minutes or seconds before logging.
Even here in the JR Forum the guests that we are seeing in the Who is online are probably "us" - logged users (There are not really users - I am not quite sure, I am just presuming). That can lead us to conclude that the Who is online is not accurate because of the duplication, right?
Is it possible to make "logged in user" a real "logged in user" and a "guest", a true/real "guest"?

You might try clearing your browser cache. I'm not seeing an issue with it here on our forums.

pch:
It works. Thanks Douglas.
Just another small issue:
If there was more than 1 visitor online, when JR removes them from the Who is Online, it shows:
0 Visitantes
instead of:
0 Visitante
Please notice that visitante (guest) is being display in plural and not in singular. it should have used the correct language string in singular because the number is 0 (zero). The number updates but the language string doesn't. It will keep on showing 0 Guests (guest in plural) for almost forever till another guest will be online. Then it will go back to normal and show: 1 Guest (in singular).
How to fix it?
Thanks

It might be better if you use Brian's suggestion.

Change this:

{if $visitor_count == 1}
{jrCore_lang skin=$_conf.jrCore_active_skin id="#" default="Guest"  assign="gs"}
{else}
{jrCore_lang skin=$_conf.jrCore_active_skin id="#" default="Guests"  assign="gs"}
{/if}

to this:

{jrCore_lang skin=$_conf.jrCore_active_skin id="#" default="Guests"  assign="gs"}

and this:

<i><b>{$visitor_count}</b> {$gs}</i>

to this:

<i>{$gs}: <b>{$visitor_count}</b></i>

Hope this helps!
  97