Forum Activity for @douglas

douglas
@douglas
03/06/25 01:25:30PM
2,804 posts

Profile image icon


Using Jamroom

That looks like you are using the Gravatar module, you could disable that module and in the Users > Users > Images tab replace the default image... You may want to do the same on the Profiles > Profiles > Images tab as well.
douglas
@douglas
03/03/25 04:44:30AM
2,804 posts

mobile logo


Using Jamroom

izhmel:
the Mobile is showing JR image

If you are not using the "Site Ads" you can hide that image by checking the "Hide Ads" checkbox in your ACP > Skins > YOURSKIN > Global Config > Site Ads tab.
douglas
@douglas
02/28/25 05:53:08AM
2,804 posts

Creating a custom skin


Design and Skin Customization

The Celebrity skin and Ninja skin will most likely NOT be compatible.
douglas
@douglas
02/28/25 05:51:33AM
2,804 posts

mobile logo


Using Jamroom

Mobile devices use the same image as the desktop. There isn't a separate logo image for mobile.

Is there something specific you're trying to do?
douglas
@douglas
02/19/25 07:35:36AM
2,804 posts

Visitors stream limit


Using Jamroom

I don't believe there is a way to limit the streaming time on visitor/non-logged in users. You can however require they be logged in to stream/view.

In the Audio and Video modules config tab, there are checkboxes for blocking streams and downloads to logged out visitors.
douglas
@douglas
02/15/25 07:43:26AM
2,804 posts

CSS edit


Using Jamroom

That would be in the form_button.css file and the form_select.css file.
douglas
@douglas
02/13/25 04:17:31AM
2,804 posts

Visitors stream limit


Using Jamroom

izhmel:
I remember using a module in the past that does just that. You could set how many streams a visitor is allowed And you could also set the stream length

There is the jrUserLimit module:
Set limits on the number of streams and downloads a User can do in one day

And the jrPlayControl module:
Set limits on the number of streams and downloads an IP address can do in a month

And the jrPlayCounts module:
Set minimum listen and view lengths for counting streamed audio and video plays
douglas
@douglas
01/02/25 01:30:46PM
2,804 posts

combined video create button


Design and Skin Customization

MONEE:
How is the combined video create button called. It looks like is using the create_video.tpl on click to choose upload or import youtube video.

You won't be able to use the method that is currently in place for the Combined Video module.

MONEE:
I need to create a similar button for the bottom tab for mobile that has option for create audio or video.
I'm guessing it's using something like
a href="#" onclick="mis_modal('')"
How do I assign template to open on click?

You could try something like this:


                        <style>
                            .add-video-modal {
                                position: relative;
                            }

                            #videoDialog {
                                position: absolute;
                                background-color: #000000;
                                border: 1px solid #999;
                                border-radius: 3px;
                                padding: 6px;
                                z-index: 999999;
                                overflow: visible;
                                box-shadow: 1px 1px 1px 1px #CCC;
                            }
                            .video-item {
                                display:flex;
                                gap:1rem;
                            }

                            .video-item > * {
                                flex:1;
                                text-align: center;
                            }

                        </style>
                        <div class="add-video-modal">

                            <dialog id="videoDialog">
                                <div class="video-item">
                                    {if jrCore_module_is_active('jrAudio')}
                                        <a href="{$jamroom_url}/{jrCore_module_url module="jrAudio"}/create">
                                            <div class="video-choice">
                                                <img src="{$jamroom_url}/modules/jrAudio/icon.png" width="50" height="50" title="upload a new audio file" alt="upload a new audio file">
                                                <br>
                                                Upload Audio
                                            </div>
                                        </a>
                                    {/if}
                                    {if jrCore_module_is_active('jrVideo')}
                                        <a href="{$jamroom_url}/{jrCore_module_url module="jrVideo"}/create">
                                            <div class="video-choice">
                                                <img src="{$jamroom_url}/modules/jrVideo/icon.png" width="50" height="50" title="upload a new video file" alt="upload a new video file">
                                                <br>
                                                Upload Video
                                            </div>
                                        </a>
                                    {/if}
                                    {if jrCore_module_is_active('jrYouTube')}
                                        <a href="{$jamroom_url}/{jrCore_module_url module="jrYouTube"}/create">
                                            <div class="video-choice">
                                                <img src="{$jamroom_url}/modules/jrYouTube/icon.png" width="50" height="50" title="embed a youtube video" alt="embed a youtube video">
                                                <br>
                                                Embed YouTube
                                            </div>
                                        </a>
                                    {/if}
                                </div>
                                <br>
                                <form method="dialog"><button class="form_button" style="float:right;">X</button></form>
                            </dialog>

                            <button class="form_button" onclick="videoDialog.show()">Add Media</button>

                        </div>
douglas
@douglas
12/30/24 07:20:20AM
2,804 posts

playlists lists


Design and Skin Customization

You can put this jrPlaylist_jrPlaylist_black_overlay_player.tpl template in your skins/YOURSKIN folder which should remove the [audio] and [video] from the playlist.

I know the file name has jrPlaylist twice, it needs to be named that way in order to override the module template.

Let me know if that helps.
jrPlaylist_jrPlaylist_black_overlay_player.zip - 2KB
douglas
@douglas
12/30/24 05:59:19AM
2,804 posts

playlists lists


Design and Skin Customization

MONEE:
jrPlaylist_black_overlay_player

Can you let me know which skin you are using?

Thanks!
1