Forum Activity for @michael

michael
@michael
03/17/16 02:00:52PM
7,832 posts

Followers Documentation?


Using Jamroom

Haven't come across the facebook feature where you can subscribe to someone and receive emails when they post something, do you have a link to the docs on that feature? or docs to the wordpress feature?

I can check it out.
michael
@michael
03/16/16 08:18:06PM
7,832 posts

Followers Documentation?


Using Jamroom

Most modern email clients will allow you to signup to an RSS feed, reading it looks just like reading an email.

I use thunderbird:
https://www.mozilla.org/en-US/thunderbird/
michael
@michael
03/16/16 01:21:30PM
7,832 posts

Followers Documentation?


Using Jamroom

Yeah, we often put place holders in for docs that need to be written, I'll write something there now.

--edit--
Try the link now, the docs are up. If it needs more, let me know what it needs.

Thanks. :)
updated by @michael: 03/16/16 02:08:48PM
michael
@michael
03/15/16 11:51:08PM
7,832 posts

delete dead tracks


Jamroom Developers

might try the batch edit module, it has a delete option.

Module: "Batch Item Editor"
https://www.jamroom.net/the-jamroom-network/networkmarket/236/batch-item-editor
michael
@michael
03/15/16 11:49:17PM
7,832 posts

item index icons disappearing


Design and Skin Customization

nice one. Thanks for letting others know how you did it. :)
michael
@michael
03/12/16 07:03:08PM
7,832 posts

Get an image for a playlist item


Using Jamroom

The code you want for the image is:
{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=(THE ITEM ID HERE) size="small" crop="auto" class="iloutline"}

So you need to iterate over that json encoded array. Normally I would expect that that playlist_list would have been decoded by the module itself. unless its in a list function.

So there are probably a couple of ways to decode it, like passing it to a custom smarty function and decode it and format it there:

Docs: "Defining your own smarty function"
https://www.jamroom.net/the-jamroom-network/documentation/development/1569/defining-your-own-smarty-function

or you might be able to decode it directly in the templates:
{foreach $_items as $item}
{$playlist = json_decode($item.playlist_list,true)}
 {foreach $playlist as $id => $position}
  {* show the image *}
   {jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$id size="small" crop="auto" class="iloutline"}
 {/foreach}
{/foreach}

something like that.
michael
@michael
03/12/16 12:00:02PM
7,832 posts

Comparison of Forum Options?


Using Jamroom

Make each of them a profile and give the quota they are in access to the forum module.

Docs: "Profile"
https://www.jamroom.net/the-jamroom-network/documentation/using-jamroom/2984/profile

Docs: "Quota"
https://www.jamroom.net/the-jamroom-network/documentation/using-jamroom/2985/quota

So all of your users will be in one quota, while your topics will be in another.

say one quota is called "topics" and another called "standard users"

In the "topics" quota create each of the profiles with the name of the topic, so they come out at:
your-site.com/books
your-site.com/fantasy-novels
your-site.com/nonfiction

and the forum will be found at
your-site.com/books/forum
your-site.com/fantasy-novels/forum
your-site.com/nonfiction/forum

forums can then be divided into categories from within the forum module. You're currently looking at the 'using jamroom' category for this thread.
michael
@michael
03/11/16 05:17:17PM
7,832 posts

still cant use sitebuilder buttns missing etc


Using Jamroom

There is only a .container class on the full page as far as I can see (screenshot).

not on each individual widget. make sure you have the newest version of Sitebuilder installed.

If its all screwed up, probably the easiest way is to start a new skin based off of a current version then copy the wanted bits over to it on a dev site to get back in sync.
screenshot_container.png screenshot_container.png - 108KB

updated by @michael: 03/11/16 05:18:48PM
michael
@michael
03/11/16 04:16:30PM
7,832 posts

Where can I make adjustment to rotator?


Design and Skin Customization

The default rotator script for uploaded images guesses that your images are in 4:3 format.

In this location your ones aren't. so to get them looking like you want, do this:
* In your ACP go to:
ACP -> FORMS -> EDITOR IMAGE UPLOAD -> TEMPLATES -> widget_upimg_display.tpl -> MODIFY
* Change this line:
$("#s{$unique_id}").height((fh / 3) * 2);
to
$("#s{$unique_id}").height((fh / 16) * 7);
* Click SAVE CHANGES
* Click CANCEL (or TEMPLATES)
* Check the checkbox in the 'active' column
* Click SAVE CHANGES

Now you are over-riding the default template with your new custom one that defaults the rotator to about a 16:9 ratio which better suits your image size.
  416