Forum Activity for @dazed

Dazed
@dazed
08/18/14 06:00:27AM
1,022 posts

Projam Bug?


Using Jamroom

we went in this morning unchecked the download boxes and saved and then added them back and saved. This seems to have resolved the issue. If we see it on other profiles I will post it.
Dazed
@dazed
08/18/14 05:27:29AM
1,022 posts

New Artist


Using Jamroom

Hey Steve that is how I can up with the variables I was using but it is still not correct.

Thanks B. It is in a charts row.
Dazed
@dazed
08/17/14 07:16:02PM
1,022 posts

The message contact form not working


Using Jamroom

when you have a jr site you should clone the skin and then your skin is never updated until you decide to do it.
Dazed
@dazed
08/17/14 06:53:15PM
1,022 posts

The message contact form not working


Using Jamroom

go to acp > skins > select your skin > click templates >
search for "please enter" and you should see it come up in the contact_us.tpl
Dazed
@dazed
08/17/14 06:09:11PM
1,022 posts

New Artist


Using Jamroom

Thanks B but not exactly what I am looking for. I need to identify artists that are less than or equal to 30 days old. If they are in that range, then I will do something. The below is working but pretty much everyone is showing in the range so apparently $item.user_created / $item.profile_created is not right. That or it does not like the row it is in with the loop!

                        {math equation="x - (30 * 86400)" x=$smarty.now assign="dlimit"}
			{if $item.user_created >= $dlimit}
			do this!!
			{/if}

                        {math equation="x - (30 * 86400)" x=$smarty.now assign="dlimit"}
			{if $item.profile_created >= $dlimit}

			{/if}

updated by @dazed: 08/17/14 06:20:19PM
Dazed
@dazed
08/17/14 03:04:23PM
1,022 posts

Projam Bug?


Using Jamroom

This might have been fixed and maybe I have just not updated my templates nut I wanted to post real quick and see if anyone else sees this.

as an artist:
upload 4-5 songs as an album and allow downloads

what I am seeing is that there is no ability to download the songs. I am guessing this is due to it being attached to an album?

updated by @dazed: 09/20/14 10:09:45AM
Dazed
@dazed
08/17/14 10:21:34AM
1,022 posts

New Artist


Using Jamroom

Thanks Paul - This does not seem to be working. Any ideas?

                        {math equation="x - (30 * 86400)" x=$smarty.now assign="dlimit"}
			{if $_created >= $dlimit}
			do something
			{/if}
Dazed
@dazed
08/17/14 09:19:24AM
1,022 posts

ProJam and Embed Audio


Using Jamroom

Douglas - If you get bored will you take a look at this and see what you get?

1. As an admin create a "news" blog so it posts to the index Latest News
2. In that blog add the uploaded image, 1 small line line of text like "check it out" and then use jrEmbed for 1 song
3. submit

Result - the index page loads a little slow and instead of the image displaying in the news slider, the song player displays instead. I added more text to the blog which helped and the image is displayed but I think the player is still trying to appear.

Thanks!

updated by @dazed: 09/18/14 06:37:35AM
Dazed
@dazed
08/16/14 09:00:15PM
1,022 posts

New Artist


Using Jamroom

On jr4 I used to have some code that would determine if an artist was less than or equal to 30 days from signup date. How would this look on JR5?
updated by @dazed: 09/25/14 05:37:35AM
Dazed
@dazed
08/16/14 08:56:46PM
1,022 posts

Simple Modal CSS


Using Jamroom

Thanks Steve. I do not see that field in the tpl that is why it was driving me crazy the other night and why I just ended up changing the js,

              
                    <a onclick="$('#review_{$item._item_id}').modal();" title="Reviews For {$item.audio_title}">{jrCore_icon icon="pen"}</a>
                        <div id="review_{$item._item_id}" class="search_box" style="display:none;z-index:9999 !important;">
                            <div class="block">

                                <div class="block_title">
                                    <h2>Reviews For {$item.audio_title}</h2>
                                </div>

                                <div class="block_config">
                                    <input type="button" class="simplemodal-close form_button" value="x">
                                </div>
                                <div class="clear"></div>
                                <br><br>
                                <div class="block_content">

		    <div class="row">
		    <div class="col9">
		    <div class="p5">
                                    {jrComment_form module="jrAudio" profile_id=$item._profile_id item_id=$item._item_id}

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

                            </div>
                        </div>
	    
  63