Forum Activity for @michael

michael
@michael
01/17/17 12:55:25PM
7,826 posts

Chat issues


Using Jamroom

cant tell from the screenshot, whats the URL in that "splash" search?
michael
@michael
01/17/17 12:48:53PM
7,826 posts

Editing the Profile form with Form Designer.


Design and Skin Customization

The 'location' field is not a default field. Something has put it there. Either a module or you by adding it with the Form Designer.

If its a module, then its probably a field the module needs. You could try using the Form Designer, to DISABLE that field and add you're own field in.
michael
@michael
01/17/17 12:43:35PM
7,826 posts

Any plans for browser notifications module?


Suggestions

outline what it is you're thinking so we can consider it. How you think it should work etc.

The chat module already has notifications and alerts for when you are off the page and a message comes in.
michael
@michael
01/17/17 12:41:33PM
7,826 posts

Google Feedburner


Using Jamroom

agreed. that's the same thing I'm seeing.

What is not understood is where feed burner is getting that information from. Look in your feed burner setup for clues.
michael
@michael
01/17/17 01:15:38AM
7,826 posts

Media Player implementation


Design and Skin Customization

not sure what you're wanting to put in video_row.tpl

if you visit yoursite.com/video and video #4 plays (careful not to conflict with the video modules url, thought that was 'video' ), then you can also pass in the video parameter to use:

yoursite.com/video/play_id=4

and use:
{jrCore_media_player module="jrVideo" field="video_file" item_id=$play_id}
to get #4. If that doesnt work then the variable to use is $_post.play_id . Throw a {debug} in the template to get the correct variable name.

If you're saying you want to use that code in a row of items, then jrCore_list is the function to get a list of items.

eg
{jrCore_list module="jrVideo" template="video_row.tpl"}
and in video_row.tpl put your video call. That will get you a list of videos and a player for each one.

--edit--
in video_row.tpl something like this:
{if isset($_items)}
{foreach $_items as $item}
HERE IS THE PLAYER FOR ITEM ID: {$item._item_id}<br>
{jrCore_media_player module="jrVideo" field="video_file" item=$item._item_id}
<br>
{/foreach}
{/if}

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1477/debug

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/89/jrcore-list
updated by @michael: 01/17/17 01:20:36AM
michael
@michael
01/17/17 01:09:16AM
7,826 posts

6.0.4 to 6.0.5 core update not completing


Design and Skin Customization

suggest deleting all the domains you are not using for your licenses so the system knows there are licenses available.

Then on the site you're trying to get the modules installed in but they are saying "no license" delete the module from the system and re-install it from the marketplace. That will leave the data but allow you to reinstall the module since the licenses are available.
michael
@michael
01/16/17 08:40:14PM
7,826 posts

Audio Pro - Couple of Questions


Using Jamroom

Got a URL I could look at to see the issue happening?
michael
@michael
01/16/17 08:38:50PM
7,826 posts

6.0.4 to 6.0.5 core update not completing


Design and Skin Customization

Try releasing any domains you are not using from your licenses section:
https://www.jamroom.net/networklicense/licenses/profile_id=1040/user_id=1035

Could be related.
michael
@michael
01/16/17 08:22:13PM
7,826 posts

White page


Using Jamroom

not sure how many times I can say the same thing......

On your server the directory /plugins/ appears to be treated differently. I dont know why, ask your server company.

Change the name of the profile to something other than /plugins/ because that folder name appears to be protected on your server.
michael
@michael
01/16/17 08:19:54PM
7,826 posts

Editing a page with site builder


Design and Skin Customization

Site builder system is a content construction system, not a skin stylizing system. To change the background color of the skin you will need to either edit the CSS files in the skin, or use the STYLE tab in the ACP.

See these docs for skin designing tips:

Docs: "Skin Customization: Table of Contents"
https://www.jamroom.net/the-jamroom-network/documentation/skin-customization
  288