Forum Activity for @douglas

douglas
@douglas
06/23/16 05:22:17AM
2,812 posts

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


Using Jamroom

perrie:
I just checked and it doesn't say that from my end.

You're right, somehow I was not looking at the same profile as you posted. Sorry!
douglas
@douglas
06/22/16 01:10:38PM
2,812 posts

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


Using Jamroom

perrie:
Wait, I take that back... look at this member: http://thenewstalkers.com/profile/settings/profile_id=103/id=103

That user is in the Master Admin group, so you should see the privacy field. Check the "Account" tab section when modifying the profile.
douglas
@douglas
06/22/16 09:05:28AM
2,812 posts

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


Using Jamroom

I'm not seeing an issue on my dev site.

Make sure you've selected the quota the user in question is in when your changing the privacy settings in the ACP > Profiles > Profile > Quota Config section.
douglas
@douglas
06/21/16 03:04:09PM
2,812 posts

Users dont get the file they paid for


Using Jamroom

What about the users "Your Purchases" tab?

It can be found in the "Account Settings"

Is the file there?
updated by @douglas: 06/21/16 03:04:17PM
douglas
@douglas
06/21/16 10:59:22AM
2,812 posts

Users dont get the file they paid for


Using Jamroom

Are there any activity or error logs about the transaction?

Thanks!
douglas
@douglas
06/21/16 06:06:29AM
2,812 posts

How to translate the Dashboard?


Using Jamroom

To add to this, the dashboard and other ACP areas are only seen by admins, I personally don't think this area should be multi-lingual since there is usually only one person that ever sees it.
douglas
@douglas
06/18/16 07:28:49AM
2,812 posts

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


Using Jamroom

pch:
1) I am still showing online after logging out. Even after refreshing the page from time to time, it takes something like 15 or 20 minutes (i guess so) before JR removes a logged out user from the Who is online. I have noticed the same here in the JR forum. Is it possible to reduce that delay?

This is most likely a cache issue, if your testing on your site, turn dev mode on so caching isn't an issue. ACP > Developer > Developer Tools > Global Config > Run In Developer Mode

https://www.jamroom.net/the-jamroom-network/documentation/modules/932/developer-tools

be sure to turn if off when your site is live.

pch:
2) There seems to be a duplication. I have been shown as myself then as a guest. (Admin profile icon) + 1 Guest. I doubt that it was a really guest. I think that, that guest was still me. I am more than sure that there wasn't anybody else on the site apart from me. I am the only one using it right now because it is under reconstruction. When JR removed me from the Who is online, the guess was gone too. I realized that I was probably that Guest. (I am not quite sure).
I have even noticed it here in the JR forum. There is a moment I was the only one logged in, the Who is online, displays my profile + 1 Guest.

This is probably due to caching as well, it saw you as a guest before you logged in, and then as the logged in user, try resetting your cache, ACP > System Tools > Reset Cache, and clear your browser cache as well. lf you turn dev mode on as mentioned above, you shouldn't see this issue at all and you shouldn't have to reset your cache.

pch:
- Do Profiles with privacy set to "Shared - Profile Owners and Followers only" show on the Who is online?

From looking at the code, the who is online function does not take into consideration if the profile is private or not.

pch:
- What about if a site has let's say 200 members and 120 of them are online simultaneously, Will all the 120 profiles (profile picture by profile picture) be displayed and an horizontal scrollbar be created in the Who i online? How will JR handle this scenario?

The code posted will just show a list without scroll bars, if you want scroll bars you would need to modify the code to do so. You could wrap it in a div with the overflow set to auto... ie.

<div style="height:72px;overflow:auto;">
    the rest of the code here...
</div>

pch:
- I created a language string for the phrase: "user(s) currently active on this site" and it displays fine on the site but the language string for "Guest" doesn't display the text, it displays the code because "Guest" is hardcoded:
{if $visitor_count == 1}
{$gs = 'Guest'}
{else}
{$gs = 'Guests'}
{/if}
We probably need two language strings for "Guest": "Guest" in singular (when guest == 1) and "Guests" in plural. How to do that in the code you posted? (I am building a multilingual site)
Thanks

If you have created language strings in your language file for "Guest" and "Guests" then change this:

{if $visitor_count == 1}
{$gs = 'Guest'}
{else}
{$gs = 'Guests'}
{/if}

to 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}

be sure to change the # to the correct number for those language strings.

Hope this helps!
updated by @douglas: 06/18/16 07:30:48AM
douglas
@douglas
06/17/16 11:09:15AM
2,812 posts

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


Using Jamroom

Most likely hidden characters when you pasted it into notepad, don't use notepad for code work. Try a different editor, like crimson editor.

http://www.crimsoneditor.com/
douglas
@douglas
06/17/16 09:59:04AM
2,812 posts

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


Using Jamroom

This should work:

    <div class="container">
        <div class="row">
            <div class="col12 last">

                <div class="block">
                    <div class="title" style="border-radius:4px;">
                        <h2>{$all_count} user(s) currently active on this site:</h2>
                    </div>
                    <div class="block_content">
                        <div class="item" style="border-radius:4px;">


                            {* MASTER ADMIN *}
                            {if isset($master)}
                            {foreach from=$master item="m_admin"}
                            <a href="{$jamroom_url}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$m_admin.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$m_admin.session_user_name title=$m_admin.session_user_name}</a>&nbsp;
                            {/foreach}
                            {/if}

                            {* SITE ADMIN *}
                            {if isset($admin)}
                            {foreach from=$admin item="s_admin"}
                            <a href="{$jamroom_url}/{$s_admin.profile_url}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$s_admin.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$s_admin.session_user_name title=$s_admin.session_user_name}</a>&nbsp;
                            {/foreach}
                            {/if}

                            {* MEMBERS *}
                            {if isset($user)}
                            {foreach from=$user item="member"}
                            <a href="{$jamroom_url}/{$member.profile_url}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.session_user_id size="xsmall" crop="auto" class="iloutline" alt=$member.session_user_name title=$member.session_user_name}</a>&nbsp;
                            {/foreach}
                            {/if}

                            {* VISITORS *}
                            {jrCore_module_url module="jrImage" assign="iurl"}
                            {if $visitor_count == 1}
                            {$gs = 'Guest'}
                            {else}
                            {$gs = 'Guests'}
                            {/if}
                            <big>+</big>&nbsp;<img src="{$jamroom_url}/{$iurl}/img/module/jrImage/default.png" height="40" width="40" class="img_shadow" alt="{$gs|jrCore_entity_string}"> <i><b>{$visitor_count}</b> {$gs}</i>

                        </div>

                    </div>
                </div>

            </div>
        </div>
    </div>
  98