Forum Activity for @michael

michael
@michael
09/29/17 09:38:10PM
7,832 posts

Follow Me Skin audio player type


Design and Skin Customization

You can use this method:

Docs: "Altering a Module's Template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template

on the /modules/jrAudio/templates/item_embed.tpl file. Copy it to your cloned skin to
/skins/YOUR SKIN/jrAudio_item_embed.tpl

Then change the player type="" to a different player. Probably the type="jrAudio_gray_overlay_player" is what you want in that file:
<div style="display: inline-block; width:100%">
    {if isset($item) && is_array($item)}
         {jrCore_media_player module="jrAudio" type="jrAudio_gray_overlay_player" field="audio_file" item=$item}
    {elseif isset($_items) && is_array($_items)}
         {jrCore_media_player module="jrAudio" type="jrAudio_gray_overlay_player" field="audio_file" items=$_items}
    {/if}
</div>
michael
@michael
09/28/17 11:21:38PM
7,832 posts

parameter "icon" is missing


Jamroom Developers

not seeing the same thing here. any idea on steps to reproduce what you're seeing?

Are you updated to the most recent version?
michael
@michael
09/27/17 03:44:31PM
7,832 posts

SITE BACKUP


Jamroom Developers

The RESTORE FROM BACKUP button is found in your sites control panel, for you its here:
https://www.jamroom.net/dm/hosting/backup_browser/370/id=1353

But the real issue is why didn't your changes stick. How were you making the changes?

The correct method is either by using the TEMPLATE tab of the ACP

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor

Or by cloning the skin

Docs: "Creating your own Skin ( Clone from an Existing Skin )"
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin

Then using module template overrides for any module template you want to adjust

Docs: "altering a module's template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template

If you used the TEMPLATE method, then you can use this to update to any newly released changes

Docs: "Using the Compare tool to keep Cloned skins up-to-date"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2394/using-the-compare-tool-to-keep-cloned-skins-up-to-date
michael
@michael
09/26/17 06:27:34PM
7,832 posts

Vimeo and Soundcloud Error, both shows this error "You do not have the proper privileges to perform that action!"


Installation and Configuration

Strumelia:
.... Ideally I suppose they shouldn't get the textbox pop up at all.....
This issue is unrelated, but the solution is to figure out where that textbox is and remove it. My guess is its part of the skin under the assumption that the timeline is activated and there is no check around it. Probably in your skins profile_index.tpl file.
michael
@michael
09/26/17 06:21:42PM
7,832 posts

Jamroom 6.1 has been released!


Announcements

Strumelia:....
My custom skin (originally from a Ningja skin) has only jrVideo_index.tpl and jrVideo_item_list.tpl in its skin templates... not any jrvideo item detail template. so I should be good concerning the m4v reference after updating, correct?....
Correct. Since your skin is not overriding the default module templates, the default module templates will be used and they are correct. Nothing needs doing.



Strumelia:....
How exactly does one 're-enable' a queue in the dashboard, though? The pause/refresh buttons there?....
When you go to
DASHBOARD -> QUEUE VIEWER
You will see a message like "all the queues are currently paused" and a button labeled something like UNPAUSE QUEUE, click that.
michael
@michael
09/25/17 09:05:51PM
7,832 posts

Vimeo and Soundcloud Error, both shows this error "You do not have the proper privileges to perform that action!"


Installation and Configuration

check YOUR-SITE.com/profile/quota_compare and make sure your profiles have got those modules enabled.
michael
@michael
09/25/17 08:53:18PM
7,832 posts

Audio Pro mobile menu button


Design and Skin Customization

Added it as a feature request/suggestion to the skins.

Currently controlled by this code in the footer.tpl file
{* Slidebar Mobile Menu *}
<script type="text/javascript">
    (function($) {
        $(document).ready(function() {
            var ms = new $.slidebars();
            $('li#menu_button > a').on('click', function() {
                ms.slidebars.open('left');
            });
        });
    }) (jQuery);
</script>
michael
@michael
09/24/17 04:55:43PM
7,832 posts

Trouble displaying total YouTube views/streams generated by a profile.


Design and Skin Customization

You dont need the _count in the name.
{jrCore_get_count module="jrYouTube" name="youtube_stream" profile_id=$_profile_id} 

I think the audio module once got that wrong so probably has these keys 'audio_stream_count_count' which would explain why its working in the audio module.
  182