Forum Activity for @douglas

douglas
@douglas
01/02/25 01:30:46PM
2,797 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,797 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,797 posts

playlists lists


Design and Skin Customization

MONEE:
jrPlaylist_black_overlay_player

Can you let me know which skin you are using?

Thanks!
douglas
@douglas
12/29/24 05:38:24AM
2,797 posts

playlists lists


Design and Skin Customization

Do you have a URL so we can check out which playlist player you are referring to?
douglas
@douglas
12/02/24 04:43:48AM
2,797 posts

list orders


Design and Skin Customization

Have you checked out the documentation on the jrCore_list function?
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/89/jrcore-list

Hope this helps!
douglas
@douglas
11/21/24 06:27:49AM
2,797 posts

search 3.0


Jamroom Developers

MONEE:
is the beta available?

Yes, if you have your Beta channel enabled in your ACP > Marketplace > Tools > Marketplace Channels ( /marketplace/release_channels ).

If you already have that channel enabled, check that you have upgraded to the latest version by going to your ACP > Listings > Search > Info tab.

Hope this helps.
douglas
@douglas
11/01/24 05:28:04AM
2,797 posts

Fan Club skin questions


Design and Skin Customization

K_K:
This is probably going to stay as a one blog style of page, so only way to change them are the templates?

That is correct.
douglas
@douglas
10/31/24 05:23:54AM
2,797 posts

Fan Club skin questions


Design and Skin Customization

Nothing is showing in those lists because you only have one profile on the site.

That list is to show other profiles blog/youtube items.
douglas
@douglas
10/29/24 06:04:36AM
2,797 posts

Fan Club skin questions


Design and Skin Customization

After looking into the code, there shouldn't be a 3rd list tab in the skin settings.

If you want, send us your URL, and admin login, and we can get that tab removed for you.

Quote:
I have about everything else working nicely, but the sidebar for individual user blog post lists shows "No Items Found" and I can't find anywhere to set it.

Can you post a URL where you are seeing this happen?

Thanks!
1