Forum Activity for @ultrajam

SteveX
@ultrajam
04/13/15 03:46:19AM
2,584 posts

Slider of images


Design and Skin Customization

This is a good article if you want to understand exactly what is going on with a carousel:
http://christianheilmann.com/2015/04/08/keeping-it-simple-coding-a-carousel/
SteveX
@ultrajam
04/10/15 04:58:19PM
2,584 posts

Having an event upload multi pictures like gallery module


Suggestions

Dive on in Strumelia. Doesn't take months.
SteveX
@ultrajam
04/10/15 04:35:45PM
2,584 posts

Change Admin Password


Using Jamroom

Click on your user name (top right), then you will see your Account tab.

Enter something into the password field, then the repeat password field, then save. Job done.
SteveX
@ultrajam
04/07/15 02:41:04AM
2,584 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,584 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,584 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,584 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.
  98