Forum Activity for @michael

michael
@michael
03/03/16 08:06:52PM
7,832 posts

While using sitebuilder to change my index, I lost the featured profiles slideshow...


Design and Skin Customization

you can delete the page from the site builder system and the default page created by the skin will come back.

If you wanted to use the code from the skin's front page, you can find it in the skins index.tpl file and use the TEMPLATE CODE widget to put it back within the Site Builder system.
michael
@michael
03/03/16 07:59:16PM
7,832 posts

Alternative Media Import


Genosis

the system function that that process does follows these actions:
* first it checks that the /data/import folder exists.
* then on submission it looks like that folder is searched.

So try FTP the files you want directly into that folder and it should be picked up when you do the GEDCOM import.
michael
@michael
03/03/16 05:30:40PM
7,832 posts

Hide download button for a particular quota


Installation and Configuration

click on that levels button on the right (in your screenshot) click MODIFY on the download button and select the quotas it should show for.
michael
@michael
03/02/16 09:35:51PM
7,832 posts

An error was encountered loading the media URL


Using Jamroom

Try these:

Docs: "Something's wrong what do I do?"
http://www.jamroom.net/the-jamroom-network/documentation/problems/114/somethings-wrong-what-do-i-do

and list any errors you see. also try re-uploading it.
michael
@michael
03/02/16 09:34:48PM
7,832 posts

Problem loading a customise background image into header section


Using Jamroom

Send us your details to support at jamroom dot net.

Need FTP login info and admin login info. Should be working. I'm guessing it could be a wrong skin setting issue. I'll take a look. put a link to this thread in the email so I know what its about.
michael
@michael
03/02/16 09:32:39PM
7,832 posts

Group Search for Profile Display


Design and Skin Customization

What is the name of that array? {$group_member} ??

if it is, then its:
{$group_member.41._profile_id}

or
{$group_member[41]._profile_id}

for things with nested arrays, you'd normally be looping over the container though.

{foreach $group_member as $member}
 {$member._profile_id}
 {$member.user_name}
etc....
{/foreach}

More info in the smarty docs:
http://www.smarty.net/docs/en/language.function.foreach

Docs: "{foreach}{/foreach}"
https://www.jamroom.net/the-jamroom-network/documentation/development/3142/foreach-foreach

and give the Developer Docs a skim read for interesting stuff:

Docs: "Developer -> Table of Contents"
https://www.jamroom.net/the-jamroom-network/documentation/development
michael
@michael
03/02/16 09:27:08PM
7,832 posts

OneAll not posting updates from Jamroom Timeline to Twitter/Facebook


Using Jamroom

can you glance an eye over the docs and make sure you're all configured on the JR side before we look for extraneous causes.

Docs: "Oneall Social"
https://www.jamroom.net/the-jamroom-network/documentation/modules/284/oneall-social#for-developers
michael
@michael
03/02/16 09:24:21PM
7,832 posts

Photo Album List Display in Side Bar


Design and Skin Customization

This is the code used in the photo albums item list file:
{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$img_id size="small" crop="auto"}

and its the same as yours, so all you need to do is figure out what the image id is that you're wanting to display is.

Look in the photo album's tempaltes for how it does it:
/modules/jrPhotoAlbum/templates/item_list.tpl
.....
{foreach $item.photoalbum_photos as $img_id}
                                    {if $i >= $limit}
                                        {continue}
                                    {/if}
                                    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.photoalbum_title_url}">{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$img_id size="small" crop="auto" class="iloutline"}</a>
                                    {$i = $i+1}
{/foreach}
michael
@michael
03/02/16 07:25:25PM
7,832 posts

how to turn on modules on the profiles? - like uploading video's music etc...


Using Jamroom

There's no limit on open threads, so ask each question in its own thread so others can follow along. That second one in particular I'm going to need some steps to recreate it to let you know how to fix it or if its a problem.

A great title is really helpful for others searching later for the same issue in the forums.

It really helps us out, thanks :)
michael
@michael
03/01/16 09:52:03PM
7,832 posts

Customize Site-wide Tag Cloud


Design and Skin Customization

you can put any css into your skin and it will effect everywhere, so css related to the TAGS module doesnt need to go into the tags module.
  421