Forum Activity for @ultrajam

SteveX
@ultrajam
04/07/15 02:41:04AM
2,589 posts

Format for usernames


LifeStreams

There is a text file in the module with working usernames for most of the services.

Make sure you read the docs about facebook pages:
https://www.jamroom.net/ultrajam/documentation/modules/1692/lifestreams
SteveX
@ultrajam
04/06/15 02:42:45PM
2,589 posts

Slider of images


Design and Skin Customization

This is from jrElastic index.tpl:
{jrCore_list module="jrProfile" order_by="_created desc" limit="10" search1="profile_active = 1" template="index_featured_slider.tpl" require_image="profile_image"}
That's just the jrCore_list function for listing the items in the slider, you;d need to copy the javascript from index.tpl as well.

You would change that to something like this to link to a blog post, so change that to work with the forum:
{jrCore_list module="jrBlog" order_by="_created desc" limit="10" search1="profile_active = 1" template="my_custom_slider.tpl" require_image="blog_image"}

jrElastic index_featured_slider.tpl looks like this:
{if isset($_items)}
    {foreach from=$_items item="row"}
        <li><a href="{$jamroom_url}/{$row.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$row._profile_id size="xxlarge" crop="auto" class="img_scale" alt=$row.profile_name title=$row.profile_name}</a><p class="caption"><a href="{$jamroom_url}/{$row.profile_url}"><span style="color:#FFF;">{$row.profile_name}</span></a></p></li>
    {/foreach}
{/if}

You would copy that to my_custom_slider.tpl and change it to something like this (swapping out jrBlog for jrForum):
{if isset($_items)}
	{jrCore_module_url module="jrBlog" assign="murl"}
    {foreach from=$_items item="row"}
        <li><a href="{$jamroom_url}/{$row.profile_url}/{$murl}/{$row._item_id}/{$row.blog_title_url}">{jrCore_module_function function="jrImage_display" module="jrBlog" type="blog_image" item_id=$row._item_id size="xxlarge" crop="auto" alt=$row.blog_title title=$row.blog_title class="iloutline iindex"}</a><p class="caption"><a href="{$jamroom_url}/{$row.profile_url}/{$murl}/{$row._item_id}/{$row.blog_title_url}" class="media_title">{$row.blog_title}</a></p></li>
    {/foreach}
{/if}

updated by @ultrajam: 04/06/15 02:45:41PM
SteveX
@ultrajam
04/05/15 05:35:55AM
2,589 posts

Lifestreams - Twitter


LifeStreams

Glad that fixed it.

As Lifestreams is for adding a stream to a profile, a profile picture isn't really needed and would be difficult to add. If you have a sitewide lifestream you really want that to be for the site (probably the admin profile or a small number of admin profiles) rather than a number of individual members.
SteveX
@ultrajam
04/05/15 02:53:46AM
2,589 posts

Lifestreams - Twitter


LifeStreams

Update to 1.1.5, then add the following parameter to your function in index.tpl:
override="true"

That should fix things up for you.
SteveX
@ultrajam
04/04/15 01:29:57PM
2,589 posts

Lifestreams - Twitter


LifeStreams

Are you using a comma list of ids for $_conf.ujLifeStreams_index_profile_id ?
SteveX
@ultrajam
04/04/15 01:28:05PM
2,589 posts

Lifestreams - Twitter


LifeStreams

Ok, I'll have to set up a similar test case - I haven't tried it in an index page for a long time. It might take a few days because of the holiday, I'll post back here when I've checked it out.
SteveX
@ultrajam
04/04/15 12:18:46PM
2,589 posts

Lifestreams - Twitter


LifeStreams

When you put {debug} into your template, do you see a value for $_conf.ujLifeStreams_index_profile_id ?

If $_conf.ujLifeStreams_index_profile_id is a number or a comma separated list of numbers, what do you see when you put just this in your template?:
{jrCore_module_function function="ujLifeStreams_display" profile_id=$_conf.ujLifeStreams_index_profile_id limit=3 filters=true actions_mode="site"}
SteveX
@ultrajam
04/03/15 07:07:02AM
2,589 posts

Adding an RSS feed from my own site into an activity page on my own site


Design and Skin Customization

Rss is more for bringing feeds in from other sites. Use jrCore_list for displaying things from your site.

jrCore_list is the first thing to learn:
https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list
It's not complicated although it can do a lot once you start using search parameters and custom templates with it.

This will list all the audio files on the site:
{jrCore_list module="jrAudio"}
This will list all the audio files from the profile:
{jrCore_list module="jrAudio" profile_id=$_profile_id}
This will list up to 10 audio files from the profile:
{jrCore_list module="jrAudio" profile_id=$_profile_id limit=10}

To get that list to appear on your site you need to add the code to a template, which you can do under the templates tab in your skin or each module depending on which template you wnat to add it to.

It will help if you spend a little time to learn some basic css, html and jQuery. But even without that you can customize a lot.

Try something out, see what results you get, then try it out again and get better results. If you break something you can just restore the template (button in the ACP) and try it again.
SteveX
@ultrajam
04/02/15 03:17:08PM
2,589 posts

Lifestream pictures from post on twitter.


LifeStreams

No, it doesn't bring in media from twitter or the other services, just a text notification. That's not a Jamroom thing, just the way that Lifestream works: Lightweight and sustainable mixing of activity across many diverse services displayed in a uniform fashion.

I think that from what you've described, you need a twitter module. But I'm not really someone to make that as I don't regularly use twitter and so wouldn't be able to do it justice (i.e. keep it up to date and use all of the features that twitter offers).
  99