Forum Activity for @thisisderin

ThisisDerin
@thisisderin
06/16/14 07:30:16PM
11 posts

User Profile Content Customization


Design and Skin Customization

Ok that didn't work for me. But i solved this with a duplication of jrPage. :)
Thank you!
ThisisDerin
@thisisderin
06/16/14 05:01:24PM
11 posts

User Profile Content Customization


Design and Skin Customization

What do you mean?
I created a item_index.tpl file for this module yes.
{jrCore_module_url module="jrLicenses" assign="murl"}
<div class="block">

    <div class="title">
        <h1>{jrCore_lang module="jrLicenses" id="19" default="Licenses"}</h1>
        <div class="breadcrumbs">
            <a href="{$jamroom_url}/{$profile_url}/">{$profile_name}</a> &raquo; {jrCore_lang module="jrLicenses" id="19" default="Licenses"}
        </div>
    </div>

    <div class="block_content">

        {$profile_licenses|jrCore_format_string:$profile_quota_id}

    </div>

</div>
In this file i import the text created by the user via form.
{$profile_licenses|jrCore_format_string:$profile_quota_id}

No, only profile owner and admin.
ThisisDerin
@thisisderin
06/16/14 04:10:55PM
11 posts

User Profile Content Customization


Design and Skin Customization

Yep thanks Steve, i got that, but thats not the reason.
The tab is visible when logged in but not when logged out.
ThisisDerin
@thisisderin
06/16/14 03:19:25PM
11 posts

User Profile Content Customization


Design and Skin Customization

Profiles are looking great but there is one more little Problem.
I created a new module grabbing the content of the user via the form designer, which works fine. But the Link to it won't show up on the Profile Navigation.
I tried the All Users (incl. logged out) option. (i can see the content by entering the url manually)
Also Quota Config is set to Allowed on Profile for all Members. I think "Members" is the Problem here? Is there a way to set it visible for everyone?
ThisisDerin
@thisisderin
06/16/14 01:40:05PM
11 posts

User Profile Content Customization


Design and Skin Customization

yes, works! thank you! now i can work on the next stuff :)
ThisisDerin
@thisisderin
06/16/14 01:33:58PM
11 posts

User Profile Content Customization


Design and Skin Customization

What header file are you talking about? Can't find any {jrMedia_player} in the Skin header or profile_header files..

Ok thanks, i changed this. But still "jrCore_media_player: no media found for player". I quess cause of none {jrMedia_player} code huh?
ThisisDerin
@thisisderin
06/16/14 12:29:00PM
11 posts

User Profile Content Customization


Design and Skin Customization

Ok i think i almost got it. I hope :D
So this is a new .tpl with Player and List i want to import inside profile_index.tpl.
Now how do i get it to play all tracks of the profile?
Not just a single one or album.
{jrCore_module_url module="jrAudio" assign="murl"}
<div class="block">

    <div class="block_content">
            <div class="item">
                <div class="jraudio_detail_player">
                    <div class="jraudio_detail_player_left">
                        {assign var="ap" value="`$_conf.jrCore_active_skin`_auto_play"}
                        {jrCore_media_player type="jrAudio_player_dark" module="jrAudio" field="audio_file" search1="_profile_id = `$_items.0._profile_id`" search2="audio_album = `$_items.0.audio_album`" order_by="audio_file_track numerical_asc" limit="50" autoplay=$_conf.$ap}
                    </div>
                    <div class="jraudio_detail_player_right">
                        {jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$_items.0._item_id size="large" class="iloutline img_shadow" alt=$_items.0.audio_title width=false height=false}
                    </div>
                </div>
            </div>
        {jrCore_list module="jrAudio" profile_id=$_profile_id order_by="audio_display_order numerical_asc" pagebreak="6" page=$_post.p pager=true}

    </div>

</div>
ThisisDerin
@thisisderin
06/16/14 12:09:37PM
11 posts

User Profile Content Customization


Design and Skin Customization

Thank you Brian!
Well the listing is already there because the code you wrote is inside the item_index.tpl of jrAudio which i'm importing at the end of my code.
What i'm trying to do now, is to get a player above which is playing all tracks listed.
Here is an Image of what i got and what i want. ;)
img
ThisisDerin
@thisisderin
06/16/14 11:45:10AM
11 posts

User Profile Content Customization


Design and Skin Customization

My bad i forgot to hit the Active Button.

But i could need some help to get the Audio Player running on the Profile Page grabbing all Audio files or a playlist/album.
What i tried so far is:
{* default index for profile *}
<div style="padding-left: 26%;">
    {$profile_home|jrCore_format_string:$profile_quota_id}
    <br>
    {jrCore_include module="jrAudio-release-1.4.4" template="jrAudio_player_dark.tpl"}
</div>
<div class="col9 last">
    {jrCore_include module="jrAudio-release-1.4.4" template="item_index.tpl"}
</div>
But it says INVALID_MODULE so i quess i need to change some code on the player_dark.tpl ?
1