Forum Activity for @dazed

Dazed
@dazed
12/31/16 09:38:10AM
1,022 posts

Activity Log Help


Using Jamroom

ok this makes a little sense but I did a search on "gallery" in the jrAudio templates with no luck. I did a search for "gallery_title_url" in the skins and came up empty also. So could this be a module template? I did not change any of those.

I had to do some shuffling of templates here because there was nothing in place for artists to allow/disallow downloads of their music. Let me ask you guys, how is the best way to add conditional statements for downloads when all that is displayed is:

                    <div class="block_config">
                        {jrCore_item_list_buttons module="jrAudio" field="audio_file" item=$item}
                    </div>

My code looks like the below that I pulled from PJ.

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

    {foreach from=$_items item="item"}

    <div class="item">
        <div class="container">
            <div class="row">

                <div class="col2">
                    <div class="block_image" style="position:relative">
                        <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}">{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$item._item_id size="xlarge" crop="auto" class="iloutline img_scale" alt=$item.audio_title width=false height=false}</a>
                        <div style="position:absolute;bottom:8px;right:5px">
                            {if $item.audio_active == 'on' && $item.audio_file_extension == 'mp3'}
                                {jrCore_media_player type="jrAudio_button" module="jrAudio" field="audio_file" item=$item}
                            {else}
                                 
                            {/if}
                        </div>
                    </div>
                </div>

                <div class="col7">
                    <div class="p5" style="overflow-wrap:break-word">
                        <h2><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}">{$item.audio_title}</a></h2><br>
                        <span class="info">{jrCore_lang module="jrAudio" id="31" default="album"}:</span> <span class="info_c"><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/albums/{$item.audio_album_url}">{$item.audio_album}</a></span><br>
                        <span class="info">{jrCore_lang module="jrAudio" id="12" default="genre"}:</span> <span class="info_c">{$item.audio_genre}</span><br>
                        {jrCore_module_function function="jrRating_form" type="star" module="jrAudio" index="1" item_id=$item._item_id current=$item.audio_rating_1_average_count|default:0 votes=$item.audio_rating_1_count|default:0}
                    </div>
                </div>

                <div class="col3 last">
                    <div class="block_config">
					{if $item.audio_dj_download == 'on' && (jrUser_is_admin() || (jrUser_is_logged_in() && $_user.profile_quota_id == $_conf.paDJDownload_dj_quota))}
		<div class="add_to_cart_section" title="DJ Download"><span class="add_to_cart_price">Mix DJ</span><a href="{$_conf['jrCore_base_url']}/audio/djdownload/audio_file/{$item._item_id}">{jrCore_icon icon="download" }</a></div>
		{/if}
			    <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}" title="Review Song">{jrCore_icon icon="pen"}</a>
                            {if isset($item.audio_file_item_price) && $item.audio_file_item_price > 0}
                                {jrCore_module_function function="jrFoxyCart_add_to_cart" module="jrAudio" field="audio_file" item=$item}
                            {elseif $_conf.jrAudio_block_download != 'on' &&  $item.audio_downloadable == 'on'|| $item.audio_file_item_price == '0'}
                                <div class="add_to_cart_section" title="Free Download"><span class="add_to_cart_price">Free</span><a href="{$jamroom_url}/{$murl}/download/audio_file/{$item._item_id}">{jrCore_icon icon="download"}</a></div>
                            {/if}
							{jrCore_item_update_button module="jrAudio" profile_id=$item._profile_id item_id=$item._item_id}
                            {jrCore_module_function function="jrPlaylist_button" playlist_for="jrAudio" item_id=$item._item_id}

								 {jrCore_item_delete_button module="jrAudio" profile_id=$item._profile_id item_id=$item._item_id}
                        
                    
					
					
					
					
					
					</div>
                </div>

            </div>
        </div>
    </div>

    {/foreach}

{/if}

updated by @dazed: 12/31/16 09:38:32AM
Dazed
@dazed
12/30/16 08:09:25PM
1,022 posts

Activity Log Help


Using Jamroom

I am seeing this error appear in my activity log many times but i have no idea how to fix. It looks like an invalid query. I am not sure why the call is for "not in" which seems like a bit of a performance issue.

Anyway any ideas?
errormsg.jpg errormsg.jpg - 284KB

updated by @dazed: 04/01/17 07:01:01PM
Dazed
@dazed
12/30/16 02:57:17PM
1,022 posts

JR Chat Icon


Using Jamroom

Thanks Douglas. I was comparing my file and the default and saw that I did not have the jrchat CSS so that must have been a recent addition.
Dazed
@dazed
12/30/16 02:09:58PM
1,022 posts

JR Chat Icon


Using Jamroom

There was a whole add in for chat:


* @title Chat Room Message */
/* @help This is the chat room new message section */
#jrchat-new-message {
    background-color:#000000;
    position: absolute;    right: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    padding: 10px 8px;
    box-sizing: border-box;
    border:1px solid #222222;
}

Dazed
@dazed
12/30/16 02:03:46PM
1,022 posts

JR Chat Icon


Using Jamroom

uh figured it out lol. Looks like the css was updated and I had the old version.
Dazed
@dazed
12/30/16 01:52:31PM
1,022 posts

JR Chat Icon


Using Jamroom

I must be missing it!
Dazed
@dazed
12/30/16 01:50:21PM
1,022 posts

JR Chat Icon


Using Jamroom

looking at this I have no idea why it is invoking the light chat. I cloned the skin again and it worked fine. But in my cloned skin it remains light.
Dazed
@dazed
12/30/16 01:34:12PM
1,022 posts

JR Chat Icon


Using Jamroom

Ahhh I thought you meant dev tools in JR. I use firebug daily which is the same thing. I spend a lot of time writing xpath on a daily basis. The css rules I have not seen but will look.
Dazed
@dazed
12/30/16 01:11:21PM
1,022 posts

JR Chat Icon


Using Jamroom

brian:
Dazed:
Much better thanks. Brian any idea why when I switch to default audio pro with dark skin the chat s dark yet on my clone I still see chat in white when using dark?

CSS differences? What does your developer tools show you?

Pretty pictures? I have no idea I have never looked at it hehe. No idea what it does or how to use it.
  29