Forum Activity for @douglas

douglas
@douglas
07/29/23 06:32:34AM
2,767 posts

AudioPro2 Skin Issue


Installation and Configuration

ukdenny:
I tried a few times in index_item_2.tpl copy and paste your code and get:-
There are syntax error(s) in your template - please fix and try again:
Syntax error in template "data/cache/jrCore/test_template_425z4pgy.tpl" on line 40 unclosed {foreach} tag

I just double-checked the code and it is correct. Make sure you copy all of the code for the index_item_2.tpl file.

Hope this helps!
douglas
@douglas
07/26/23 04:51:55PM
2,767 posts

AudioPro2 Skin Issue


Installation and Configuration

This is a bit tricky but if you can edit the template files and then upload them via SFTP, you should be able to follow these steps to change that area on your site.

1. Open your skins/AudioPro2/index_featured.tpl file.

2. Find this code:

    <section class="featured dark">
        <div class="row">
            <div class="col12">
                <div class="head">
                    {jrCore_icon icon="star" size="20" color="ECA81E"} <span>{jrCore_lang skin="jrAudioPro2" id=49 default="Featured Artists"}</span>
                </div>
                <div class="col12">
                    {if strlen("{$_conf.jrAudioPro2_list_2_ids}") > 0}
                        {jrCore_list module="jrProfile" search="_item_id in `$_conf.jrAudioPro2_list_2_ids`" limit="7" template="index_item_2.tpl"}
                    {else}
                        {jrCore_list module="jrProfile" order_by="profile_jrAudio_item_count numerical_desc" limit="7" template="index_item_2.tpl"}
                    {/if}
                </div>
            </div>
        </div>
        {if !jrUser_is_logged_in()}
        <div class="row">
            <div class="col12">
                <div class="center register">
                    <br>
                    {jrCore_lang skin="jrAudioPro2" id=52 default="Join us today and start creating."} <button class="form_button" onclick="jrCore_window_location('{$jamroom_url}/{jrCore_module_url module="jrUser"}/signup')">{jrCore_lang skin="jrAudioPro2" id=85 default="Register"}</button>
                </div>
            </div>
        </div>
        {/if}
    </section>

3. Change the jrCore_list functions limit parameter from 7 to 8 - there are two(2) jrCore_list functions to modify.

Change this:

                    {if strlen("{$_conf.jrAudioPro2_list_2_ids}") > 0}
                        {jrCore_list module="jrProfile" search="_item_id in `$_conf.jrAudioPro2_list_2_ids`" limit="7" template="index_item_2.tpl"}
                    {else}
                        {jrCore_list module="jrProfile" order_by="profile_jrAudio_item_count numerical_desc" limit="7" template="index_item_2.tpl"}
                    {/if}

to this:

                    {if strlen("{$_conf.jrAudioPro2_list_2_ids}") > 0}
                        {jrCore_list module="jrProfile" search="_item_id in `$_conf.jrAudioPro2_list_2_ids`" limit="8" template="index_item_2.tpl"}
                    {else}
                        {jrCore_list module="jrProfile" order_by="profile_jrAudio_item_count numerical_desc" limit="8" template="index_item_2.tpl"}
                    {/if}

4. Open your skins/jrAudioPro2/index_item_2.tpl

5. Select the entire contents of that file and delete it.

6. Replace it with the following code.

{if isset($_items)}
    {jrCore_module_url module="jrAudio" assign="murl"}

    {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 style="padding: 5px;">
                    <div class="featured_item">
                        <div class="cover_image">

                            {if $item.profile_header_image_size > 0}
                                <a href="{$jamroom_url}/{$item.profile_url}"  title="{jrCore_lang skin="jrAudioPro2" id="87" default="Click to view"}">
                                    {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_header_image" item_id=$item._profile_id size="1280" class="img_scale" crop="2:1" alt=$item.profile_name _v=$item.profile_header_image_time}
                                </a>
                            {else}
                                <a href="{$jamroom_url}/{$item.profile_url}"  title="{jrCore_lang skin="jrAudioPro2" id="87" default="Click to view"}">
                                    {jrCore_image image="profile_header_image.jpg" width="1140" class="img_scale" height="auto" crop="3:1"}
                                </a>
                            {/if}

                            <div class="profile_info">
                                <div class="wrap">
                                    <div class="table">
                                        <div class="table-row">
                                            <div class="table-cell profile-image">
                                                <div class="profile_image">
                                                    {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="xxlarge" crop="auto" class="img_scale img_shadow" alt=$item.profile_name width=false height=false}
                                                </div>
                                            </div>
                                            <div class="table-cell">
                                                <div class="profile_name">
                                                    {$item.profile_name|truncate:55}<br>
                                                    <span><a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a> </span>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="wrap">
                            {if $_conf.jrAudioPro2_require_price_2 == 'on'}
                                {$s2 = "audio_file_item_price > 0"}
                            {/if}
                            {if jrCore_module_is_active('jrCombinedAudio') && $_conf.jrAudioPro2_list_2_soundcloud == 'on'}
                                {jrCombinedAudio_get_active_modules assign="mods"}
                                {if strlen("{$mods}") > 0}
                                    {jrSeamless_list modules=$mods  profile_id=$item._profile_id order_by="*_display_order desc" limit="5" template="index_item_audio.tpl"}
                                {elseif jrUser_is_admin()}
                                    {jrCore_lang skin="jrAudioPro2" id=82 default="No active audio modules found!"}
                                {/if}
                            {else}
                                {jrCore_list module="jrAudio" profile_id=$item._profile_id search=$s1 order_by="audio_display_order desc" limit="5" template="index_item_audio.tpl"}
                            {/if}
                        </div>
                    </div>
                </div>
            </div>

        {if $item@last || ($item@iteration % 4) == 0}
            </div>
        {/if}

    {/foreach}
{else}
    <div class="no-items">
        <h1>{jrCore_lang skin="jrAudioPro2" id="62" default="No items found"}</h1>
        {jrCore_module_url module="jrCore" assign="core_url"}
        <button class="form_button" style="display: block; margin: 2em auto;" onclick="jrCore_window_location('{$jamroom_url}/{$core_url}/skin_admin/global/skin={$_conf.jrCore_active_skin}/section=List+2')">{jrCore_lang skin="jrAudioPro2" id="64" default="Edit Configuration"}</button>
    </div>
{/if}


Hope this helps!
updated by @douglas: 07/29/23 06:10:26AM
douglas
@douglas
07/26/23 05:10:44AM
2,767 posts

OOPS... PAGE NOT FOUND


Using Jamroom

Hello,

We don't have any docs set up for the AudioPro2 skin.

You can post your questions here and we should be able to answer them.
douglas
@douglas
05/23/23 06:11:47AM
2,767 posts

Jamroom logo


Using Jamroom

Hello,

In the Nova skin, you can hide ads by checking the Hide Ad checkbox in the skins config. ACP > Skins > YOURSKIN > Global Config > Site Ads.

Hope this helps!
douglas
@douglas
04/23/23 05:05:37AM
2,767 posts

Menu issue on iphone


Design and Skin Customization

Hey Mick,

Can you let us know which skin(s) your seeing this issue?

Thanks!
douglas
@douglas
04/20/23 11:32:51AM
2,767 posts

How to exclude Audio that doesn't have images?


Design and Skin Customization

Hello,

Try adding the require_image parameter to your jrCore_list function.

{jrCore_list module="jrAudio" search1="audio_genre != Advertisement" order_by="audio_file_stream_count desc" limit="10" require_image="audio_image"}

Hope this helps!
updated by @douglas: 04/20/23 11:33:11AM
douglas
@douglas
04/14/23 06:21:20AM
2,767 posts

adding a right side menu sidebar


Design and Skin Customization

Hello, using the grid setup for two columns should look more like this.

<div id="wrapper">

    <div id="content">

        <div class="container">

            <div class="row">

                <div class="col9">
                </div>
                
                </div class="col3 last">
                </div>

            </div>

        </div>

    </div>

</div>

Hope this helps!
douglas
@douglas
03/10/23 08:00:48AM
2,767 posts

Pedigree Problem


Genosis

Can you send your admin login info to support[at]jamroom[dot]net with a link to this forum post so we can check it out?

Thanks!
douglas
@douglas
02/28/23 02:53:17AM
2,767 posts

Pedigree Problem


Genosis

Hello,

I'm not seeing this on my install, try running the Integrity Check tool, Admin > Core > System Core > Tools > Integrity Check ( /core/integrity_check ) and then the Reset Cache tool, Admin > Core > System Core > Tools > Reset Caches ( /core/cache_reset )

Hope this helps!
Screenshot 2023-02-28 at 4.50.11 AM.png Screenshot 2023-02-28 at 4.50.11 AM.png - 11KB
douglas
@douglas
02/16/23 12:02:22AM
2,767 posts

Cannot install jamroom


Installation and Configuration

Hello, and welcome to Jamroom!

You'll want to make sure your server meets the requirements.

https://www.jamroom.net/the-jamroom-network/documentation/getting-started/774/server-requirements

Hope this helps!
  3