profile latest videos and music bugish thing

soaringeagle
@soaringeagle
9 years ago
3,304 posts
profiles that have music and/or vids show the entire sites "latest'' list not the profiles
see
https://www.dreadlockssite.com/arkynstone-gypsyfae
https://www.dreadlockssite.com/hunter-orourke

if they don't have any of their own music and/or vids the list doesn't show
but if they do have any, the whole sites latest shows instead of the profiles

can't believe I am just noticing that now haha

edit :
additional weirdness
https://www.rainbowgatheringmusic.org/
notice the other 2 profiles have the music span 2 colums wide
and vids below
this 1 the 2 are side by side

confusing they should be side by side right?


--
soaringeagle
head dreadhead at dreadlocks site
glider pilot student and member/volunteer coordinator with freedoms wings international soaring for people with disabilities

updated by @soaringeagle: 09/27/15 05:25:35AM
douglas
@douglas
9 years ago
2,790 posts
Have you made any modifications to your skins/YOURSKIN/profile_index.tpl?

I also think the profile_index_video.tpl needs a profile_id parameter in the jrCore_list and jrSeemless functions.

Change this:
        {if jrCore_module_is_active('jrCombinedVideo')}
            {jrCombinedVideo_get_active_modules assign="mods"}
            {if strlen($mods) > 0}
                {jrSeamless_list modules=$mods order_by="_created desc" limit=10 template=$v_tpl}
            {/if}
        {else}
            {jrCore_list module="jrVideo" order_by="_created desc" limit=10 template=$v_tpl}
        {/if}

To this:
        {if jrCore_module_is_active('jrCombinedVideo')}
            {jrCombinedVideo_get_active_modules assign="mods"}
            {if strlen($mods) > 0}
                {jrSeamless_list modules=$mods order_by="_created desc" profile_id=$profile_id limit=10 template=$v_tpl}
            {/if}
        {else}
            {jrCore_list module="jrVideo" order_by="_created desc" profile_id=$profile_id limit=10 template=$v_tpl}
        {/if}



--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
soaringeagle
@soaringeagle
9 years ago
3,304 posts
i have yes but only a minor change 1 sec
profile index only had a class added
 <div class="block_content profilebio">
profile index music as well
 <div class="col9 last profilemusic">

changed the profile index vid code going to edit music templste too


--
soaringeagle
head dreadhead at dreadlocks site
glider pilot student and member/volunteer coordinator with freedoms wings international soaring for people with disabilities

updated by @soaringeagle: 08/25/15 09:08:21AM
soaringeagle
@soaringeagle
9 years ago
3,304 posts
did not seem to fix it....


--
soaringeagle
head dreadhead at dreadlocks site
glider pilot student and member/volunteer coordinator with freedoms wings international soaring for people with disabilities
soaringeagle
@soaringeagle
9 years ago
3,304 posts
it should be profile_id=$_profile_id
I believe...testing


--
soaringeagle
head dreadhead at dreadlocks site
glider pilot student and member/volunteer coordinator with freedoms wings international soaring for people with disabilities
soaringeagle
@soaringeagle
9 years ago
3,304 posts
yes that fixed it note it is profile_id=$_profile_id you need the _
and in the music template only the seemless call needs editing the list call has the proper code

ps although its solved ill let you mark it solved when you fix it in the template


--
soaringeagle
head dreadhead at dreadlocks site
glider pilot student and member/volunteer coordinator with freedoms wings international soaring for people with disabilities

updated by @soaringeagle: 08/25/15 09:31:26AM
douglas
@douglas
9 years ago
2,790 posts
soaringeagle:
i have yes but only a minor change 1 sec
profile index only had a class added
 <div class="block_content profilebio">
profile index music as well
 <div class="col9 last profilemusic">

changed the profile index vid code going to edit music templste too

The jrNingja skin has this in the profile_index.tpl for the music and video blocks:

        {* Latest Music and Latest Videos Row *}
        {if $profile_jrAudio_item_count > 0 || $profile_jrVideo_item_count > 0}
        <div class="row">

            <div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                    {jrCore_include template="profile_index_music.tpl"}
                </div>
            </div>


            <div class="{if $profile_jrAudio_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                    {jrCore_include template="profile_index_video.tpl"}
                </div>
            </div>

        </div>
        {/if}

and I really meant $_profile_id, just forgot to add the underscore.

I'll get the template updated for the next release.

Thanks!


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos

Tags