Forum Activity for @douglas

douglas
@douglas
12/14/16 11:15:25AM
2,807 posts

Editing the Log In form


Using Jamroom

Sorry, I was thinking signup.

You can not edit the login form, not really sure why you would need to.

That form and page is built internally, it is not part of a template.

You can create your own login form if you like though.

https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/603/howto-add-the-user-login-form-to-any-page

But I don't believe you can add anymore fields to it.

Hope this helps!
douglas
@douglas
12/14/16 08:31:07AM
2,807 posts

Editing the Log In form


Using Jamroom

Go to your "Account Settings" logged in as the master admin, then click on the "Form Designer" button, the select the "user/signup" selection from the drop down field at the top right.

Hope this helps!
douglas
@douglas
12/12/16 10:29:17AM
2,807 posts

question mark replacing image (when profile hyperlinked)


Using Jamroom

Do those two profiles have a profile image and a user image uploaded?
douglas
@douglas
12/11/16 10:10:11AM
2,807 posts

Jquery or ?


Design and Skin Customization

lolglad that sorted it for you.
douglas
@douglas
12/11/16 10:07:27AM
2,807 posts

Html code is showing in the chart description in Media Pro


Installation and Configuration

There is most likely a truncate on the text and it is getting cut off in the middle of the HTML link code. I'll take a look and see about getting it fixed for the next release.

For now, you can modify that profiles bio and remove the link at the beginning.

Thanks!
updated by @douglas: 12/11/16 10:08:11AM
douglas
@douglas
12/11/16 03:35:31AM
2,807 posts

Media Pro - Putting the latest uploaded songs on the front page


Design and Skin Customization

brianrudie:
In Media Pro
How do I Put the latest releases / newley uploaded songs on the front page instead of top singles?
so that returning visitors can see the latest tunes / new releases

If you want to change the "Top Singles" into "Newest Singles" modify your index_top_singles.tpl file and change the entire code to this:

{if isset($_conf.jrMediaPro_require_images) && $_conf.jrMediaPro_require_images == 'on'}
    {jrCore_list module="jrAudio" order_by="_item_id numerical_desc" quota_id=$_conf.jrMediaPro_artist_quota search1="profile_active = 1" template="index_top_singles_rating_row.tpl" require_image="audio_image" pagebreak="6" page=$_post.p}
{else}
    {jrCore_list module="jrAudio" order_by="_item_id numerical_desc" search1="profile_active = 1" quota_id=$_conf.jrMediaPro_artist_quota template="index_top_singles_rating_row.tpl" pagebreak="6" page=$_post.p}
{/if}

If you are using a cloned skin, which you really should be if your going to make modifications to the skin like you are, then be sure to change all instances of jrMediaPro to your skin directory name.

Hope this helps!
douglas
@douglas
12/11/16 03:26:47AM
2,807 posts

User Birthday Display


Using Jamroom

Glad it worked out, thanks! :)
douglas
@douglas
12/10/16 05:17:28AM
2,807 posts

Jquery or ?


Design and Skin Customization

You'll need the jrLoad function from the jrProJam.js file

function jrLoad(id,url,round_id,round_num) {
    if (typeof url == "undefined") {
        return false;
    }
    if (url == 'blank') {
        $(id).hide();
    }
    else if (id == '#hidden') {
        $(id).hide();
        $(id).load(url);
    }
    else {
        if (id == '#rank') {
            var t = $('#rank').height();
            if (t == null) {
                $('#main').html('<div class="inner"><div id="rank"></div></div>');
            }
        }
        var h = $(id).height();
        if (h > 150) {
            $(id).height(h);
        }
        $(id).fadeTo(100,0.5,function() {
            $(id).html('<div style="text-align:center;padding:20px;margin:0 auto;"><img src="'+ core_system_url +'/skins/jrProJam/img/loading.gif" style="margin:15px;"><br>Loading...</div>');
            $(id).load(url,function() {
                var l = $(id).text();
                if (l.length < 1 && id != '#player') {
                    $(id).html('');
                }
                if (h > 150) {
                    $(id).height('100%');
                }
                if (round_id && round_num > 0) {
                    $(id).fadeTo(100,1.00,function() {
                        if (jQuery.browser.msie) {
                            this.style.removeAttribute('filter');
                        }
                        $(round_id).corner(round_num +'px');
                    });
                }
                else {
                    $(id).fadeTo(100,1,function() {
                        if (jQuery.browser.msie) {
                            this.style.removeAttribute('filter');
                        }
                    });
                }
            })
        });
    }
}

for the favorite artist and song buttons.

And you'll need the responsiveslides.min.js from the ProJam js folder as well. The jQuery for the image slider itself is in the ProJam header.tpl file.

Hope this helps!
douglas
@douglas
12/09/16 08:27:09AM
2,807 posts

User Birthday Display


Using Jamroom

I just tested this code out and it does work. Let me know if your seeing any issues.

Thanks!
douglas
@douglas
12/09/16 07:43:09AM
2,807 posts

User Birthday Display


Using Jamroom

I'm not really sure why I put Gallery in that post, you got what I meant though. That is the correct template to modify (Birthday > Templates > widget_birthdays.tpl).

Are you saying you modified the template and there is no change?

If so, send us your admin login (support[at]jamroom[dot]net) and I'll take a look at it for you.

Thanks!
  80