Forum Activity for @douglas

douglas
@douglas
06/04/15 05:42:59AM
2,812 posts

Listing in ProJam Light


Design and Skin Customization

nduguseliphaz:
with top 5 blogs, top 5 songs, top 5 most viewed artists

So your wanting another three top 5 lists? Blogs, Songs and Artists?

Can you post a link to your site so I can see the layout?
douglas
@douglas
06/04/15 04:30:05AM
2,812 posts

Listing in ProJam Light


Design and Skin Customization

nduguseliphaz:
What about a list of top 5 newest blogs?

Are you wanting the same layout as the other three top lists?
douglas
@douglas
06/03/15 11:13:13AM
2,812 posts

Tree Note


Genosis

There should be a "Trees" drop down link in your main menu, are you using the Genosis skin?
genosis_tree_menu.jpg genosis_tree_menu.jpg - 62KB

updated by @douglas: 06/03/15 11:13:23AM
douglas
@douglas
06/03/15 06:57:48AM
2,812 posts

Listing in ProJam Light


Design and Skin Customization

In your skins/jrProJamLight/header.tpl file, find this:

    {/if}

    <div id="content" class="mt10">
        <!-- end header.tpl -->

and just above the { /if } line, add this:

    <div class="slider_content">
        <div class="body_1">
            <div class="container">
                <div class="row">
                    <div class="col4">
                        <div class="body_2" style="padding-left: 30px;">
                            <h2>Top Songs</h2><br>
                        </div>
                        <div class="body_2 m10">
                            {capture name="top_songs_template" assign="top_songs_row"}
                            {literal}
                            {if isset($_items)}
                                {jrCore_module_url module="jrAudio" assign="aurl"}
                                <div class="container">

                                    {foreach from=$_items item="item"}
                                        {if $item@first || ($item@iteration % 4) == 1}
                                            <div class="row">
                                        {/if}
                                        <div class="col3{if $item@last || ($item@iteration % 4) == 0} last{/if}">
                                            <div class="p3 center">
                                                <a href="{$jamroom_url}/{$item.profile_url}/{$aurl}/{$item._item_id}/{$item.audio_title_url}">{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img_scale" alt=$item.audio_title title=$item.audio_title}</a>
                                            </div>
                                        </div>
                                        {if $item@last || ($item@iteration % 4) == 0}
                                            </div>
                                        {/if}
                                    {/foreach}

                                </div>
                            {/if}
                            {/literal}
                            {/capture}
                            {if isset($_conf.jrProJamLight_require_images) && $_conf.jrProJamLight_require_images == 'on'}
                                {jrCore_list module="jrAudio" order_by="audio_file_stream_count numerical_desc" limit="16" template=$top_songs_row require_image="audio_image"}
                            {else}
                                {jrCore_list module="jrAudio" order_by="audio_file_stream_count numerical_desc" limit="16" template=$top_songs_row}
                            {/if}
                        </div>
                    </div>
                    <div class="col4">
                        <div class="body_2" style="padding-left: 30px;">
                            <h2>Top Artists</h2><br>
                        </div>
                        <div class="body_2 m10">
                            {capture name="top_artists_template" assign="top_artists_row"}
                            {literal}
                                {if isset($_items)}
                                <div class="container">

                                    {foreach from=$_items item="item"}
                                    {if $item@first || ($item@iteration % 4) == 1}
                                    <div class="row">
                                        {/if}
                                        <div class="col3{if $item@last || ($item@iteration % 4) == 0} last{/if}">
                                            <div class="p3 center">
                                                <a href="{$jamroom_url}/{$item.profile_url}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img_scale" alt=$item.profile_name title=$item.profile_name}</a>
                                            </div>
                                        </div>
                                        {if $item@last || ($item@iteration % 4) == 0}
                                    </div>
                                    {/if}
                                    {/foreach}

                                </div>
                                {/if}
                            {/literal}
                            {/capture}
                            {if isset($_conf.jrProJamLight_require_images) && $_conf.jrProJamLight_require_images == 'on'}
                                {jrCore_list module="jrProfile" order_by="profile_view_count numerical_desc" limit="16" template=$top_artists_row require_image="profile_image"}
                            {else}
                                {jrCore_list module="jrProfile" order_by="profile_view_count numerical_desc" limit="16" template=$top_artists_row}
                            {/if}
                        </div>
                    </div>
                    <div class="col4 last">
                        <div class="body_2" style="padding-left: 30px;">
                            <h2>Top Videos</h2><br>
                        </div>
                        <div class="body_2 m10">
                            {capture name="top_videos_template" assign="top_videos_row"}
                            {literal}
                                {if isset($_items)}
                                {jrCore_module_url module="jrVideo" assign="vurl"}
                                <div class="container">

                                    {foreach from=$_items item="item"}
                                    {if $item@first || ($item@iteration % 4) == 1}
                                    <div class="row">
                                        {/if}
                                        <div class="col3{if $item@last || ($item@iteration % 4) == 0} last{/if}">
                                            <div class="p3 center">
                                                <a href="{$jamroom_url}/{$item.profile_url}/{$vurl}/{$item._item_id}/{$item.video_title_url}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._profile_id size="medium" crop="auto" class="iloutline img_scale" alt=$item.video_title title=$item.video_title}</a><br>
                                            </div>
                                        </div>
                                        {if $item@last || ($item@iteration % 4) == 0}
                                    </div>
                                    {/if}
                                    {/foreach}

                                </div>
                                {/if}
                            {/literal}
                            {/capture}
                            {if isset($_conf.jrProJamLight_require_images) && $_conf.jrProJamLight_require_images == 'on'}
                                {jrCore_list module="jrVideo" order_by="video_file_stream_count numerical_desc" limit="16" template=$top_videos_row require_image="video_image"}
                            {else}
                                {jrCore_list module="jrVideo" order_by="video_file_stream_count numerical_desc" limit="16" template=$top_videos_row}
                            {/if}
                        </div>
                    </div>
                </div>
            </div>
        </div>

    </div>
douglas
@douglas
06/03/15 05:31:46AM
2,812 posts

Tree Note


Genosis

It is in your tree description field, Trees > Tree Browser > Modify.
douglas
@douglas
06/01/15 09:25:05AM
2,812 posts

Search page


Installation and Configuration

Your welcome, glad I could help. :)
douglas
@douglas
06/01/15 02:20:53AM
2,812 posts

image editor wont save


Design and Skin Customization

If your referring to the image editor in the Image Gallery module, try unchecking the High Resolution Editing checkbox in your ACP > Image Galleries > Global Config.
douglas
@douglas
05/31/15 07:30:20AM
2,812 posts

Differrent strange homepage after new user registration


Genosis

You might try removing that profile and creating it again.

I'm not able to replicate this on my test Genosis site, but there is something not right with that profile.
douglas
@douglas
05/30/15 06:50:46AM
2,812 posts

Language issue [SOLVED]


Design and Skin Customization

If you've set your Admin > User Accounts > Global Config > Default Language to the language you want to use that should work for new signups. Everyone else, including the admin, will need to set their default language in their account settings.

If that doesn't work, then you'll have to clear the language cookie in your browser.
douglas
@douglas
05/30/15 06:38:02AM
2,812 posts

Profile Layouts


Design and Skin Customization

See if this works for you:

{jrCore_media_player module="jrAudio" field="audio_file" search1="_profile_id = `$_profile_id`" search2="audio_featured = on" limit="21" type="jrAudio_blue_monday" assign="show_featured"}

{if isset($show_featured) && strlen($show_featured) > 0}
{$show_featured}
{else}
<div class="block">
    {jrCore_include template="profile_index_image.tpl"}
</div>
{/if}
  150