Forum Activity for @douglas

douglas
@douglas
09/14/16 08:47:37AM
2,812 posts

Is Geo Location a static Signup field?


Using Jamroom

Elise:
Is it updated per login? or static from signup?
Yes, she changed provider.

Have you reset your cache lately?

ACP > System Tools > Reset Cache
douglas
@douglas
09/14/16 07:46:27AM
2,812 posts

Is Geo Location a static Signup field?


Using Jamroom

I believe the GEO location goes off the users IP address.

Did her IP address change after she moved?
douglas
@douglas
09/13/16 12:10:12PM
2,812 posts

What causes a Youtube video to show the embed code instead of the video?


Using Jamroom

The URLScan module doesn't use the code

[jrEmbed module="jrYouTube" youtube_id="xhrZL8vHICs"]

That is for the jrEmbed module, if you want to use the URLScan feature, just paste the YouTube link in the post.
https://www.jamroom.net/the-jamroom-network/documentation/modules/2894/media-url-scanner

If your trying to embed, make sure you've got the jrEmbed module installed.
https://www.jamroom.net/the-jamroom-network/documentation/modules/194/editor-embedded-media

Hope this helps!
douglas
@douglas
09/13/16 05:53:27AM
2,812 posts

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


Using Jamroom

I think what your seeing is the forum modules who is active on the forum, I'm not sure that is going to work as a site wide "who is online". The code I've given will only work for logged in users.
douglas
@douglas
09/13/16 05:51:03AM
2,812 posts

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


Using Jamroom

pch:
Hi Douglas,
Thanks. So Can you explain how come is the Who is online in this JR website showing to visitor?
Thanks

You can see who is online when logged out here on jamroom.net?
douglas
@douglas
09/10/16 07:16:12AM
2,812 posts

getting an error with Mastro 4 skin with Annika live wall Audio buttons


Design and Skin Customization

SeanChaney:
First of all I am completely new to Jamroom 5.
This is what I did:
In site Builder I entered the example code from the Annika Live Wall.
I'm including a screen shot to help.
P.S. this is not a live site yet just beginning.
I checked the other Skins and they all have play buttons.

You'll want to add that code to a "Template Code" widget instead of the "HTML Widget".

Hope this helps!
douglas
@douglas
09/10/16 07:14:06AM
2,812 posts

Advise on Creating a Custom Page


Using Jamroom

You would have to have a separate page for each category_1 etc... in order to use the meta tag module.

Are you trying to add keywords and descriptions to each category? Or are you trying to change the page title for each category?

Thanks!
douglas
@douglas
09/10/16 07:03:30AM
2,812 posts

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


Using Jamroom

pch:
By the way, have you found the fix for the "Whos Online" that doesn't show for logout users and visitors?
Thanks

The "Who Is Online" function is setup to NOT show to non logged in users. A workaround would be to add an if statement to show the login and signup links to non logged in users, which could inspire them to create an account or at least login to the site.

{if jrUser_is_logged_in()}

Who is online code goes here...

{else}

Signup and Login links go here...

{/if}

Hope this helps!
updated by @douglas: 09/11/16 01:23:34AM
douglas
@douglas
09/10/16 06:52:01AM
2,812 posts

Scroll To Top Button not working on all the pages


Using Jamroom

pch:
Hi Steve,
As said in my other post, it works well. Thanks a lot for your help.
Although it works, as i slightly modified it, I just wanted to confirm with an advanced programmer/coder that the code structure is right (correct).
Hope it makes sense now
Once again, thanks

Which skin are you trying to add this to?
douglas
@douglas
09/09/16 10:33:18AM
2,812 posts

Editing Activity Timeline


Design and Skin Customization

Strumelia:
Quote: that way the loop isn't trying to run for everyone, just the admin user.
Douglas, the way you have it written above...will that work for the Profile Admins as well as the master admin then?

I think so, the master admin is an admin user, I've not tested this though.

If not just add in the master admin like this:

{if jrUser_is_admin() || jrUser_is_master()}
{if isset($_items)}
{foreach $_items as $item}
  <a href="{$jamroom_url}/timeline/delete/id={$item._item_id}">X</a>
{/foreach}
{/if}
{/if}

Hope this helps!
  89