Forum Activity for @douglas

douglas
@douglas
06/09/14 12:11:38PM
2,807 posts

Start new Jamroom Website


Using Jamroom

Hello Paulo,

The JR5 Core is free and the Superpack Bundle is a good start for a music community.

https://www.jamroom.net/the-jamroom-network/bundle/9/super-pack

Hope this helps,
Douglas
douglas
@douglas
06/09/14 06:28:10AM
2,807 posts

Charts


Using Jamroom

I don't see anything wrong with your code, I do see it showing the same charts as the yearly chart on your site, so something isn't working right. Maybe Brian can take a look at it and let us know.
douglas
@douglas
05/23/14 08:08:05AM
2,807 posts

Raise File Max Size


Using Jamroom

You'll find that in your Core > Quota Config section.

If you can't set it any higher, then you'll want to follow this FAQ

https://www.jamroom.net/the-jamroom-network/documentation/problems/748/how-do-i-increase-phps-upload-limit

Hope this helps,
Douglas
douglas
@douglas
05/22/14 06:46:51AM
2,807 posts

Form Designer - Upload image field can't pull it in


Design and Skin Customization

If its a profile page then you can do something like this:

{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_dj_header" item_id=$_profile_id etc...}

Hope this helps,
Douglas
douglas
@douglas
05/22/14 06:40:04AM
2,807 posts

Jamroom Charts


Using Jamroom

I'm not seeing an issue and those variables are being used in the Nova skins song_chart_row.tpl file.

The charts are based on song plays, you can change that if you like by modifying the song_charts.tpl file and changing the chart_field parameter in the jrCore_list function.

Hope this helps,
Douglas
douglas
@douglas
05/22/14 06:23:26AM
2,807 posts

Form Designer - Upload image field can't pull it in


Design and Skin Customization

Is the template for a profile page or front-end of your site?
douglas
@douglas
05/21/14 08:25:20AM
2,807 posts

I cant seem to get album player up on index page


Jamroom Help

I've fixed this for you, check your skin settings, you had the profile name as well as the album name and all you needed was the album name.

Hope this helps,
Douglas
douglas
@douglas
05/21/14 08:10:57AM
2,807 posts

Display uploaded files and download them


Jamroom Developers

Your jrCore_list can't have a null template... try it like this:

{capture name="row_template" assign="venue_row"}
	{literal}
		{if isset($_items)}
			{jrCore_module_url module="gsVenue" assign="vurl"}
		  	{foreach from=$_items item="it"}
        		<div class="item">

		            <div class="container">
        		        <div class="row">
                		    <div class="col10 last">

                        		<div class="p5">
                            		<h4><a href="{jrProfile_item_url module="gsVenue" profile_url=$it.profile_url item_id=$it._item_id title=$it.venue_docs_name}">
                                    {$it.venue_docs_name}<img src="../doc.png"></a></h4><br><br>
                            		<span class="normal">{$item.page_body|jrCore_format_string:$item.profile_quota_id|strip_tags|truncate:180}</span>
		                        </div>

        		                <div id="m{$it._item_id}" class="venue_actions">
                		            {jrCore_item_delete_button module="gsVenue" action="`$murl`/delete_file/id=`$it._item_id`" profile_id=$it._profile_id item_id=$it._item_id height="8" width="8"}

                        		    {jrCore_module_url module="gsVenue" assign="murl"}
 		                            <a href="{$jamroom_url}/{$murl}/download_file/id={$it._item_id}">
	                                {jrCore_icon icon="download"}</a><br>
    		                    </div>

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

        		</div>
		    {/foreach}
		{/if}
	{/literal}
{/capture}

{jrCore_list module="gsVenue" search1="venue_title_url = `$item.venue_title_url`" search2="_profile_id = `$item._profile_id`" template=$venue_row
order_by="venue_order numerical_asc" limit="500"}

Hope this helps,
Douglas
douglas
@douglas
05/21/14 08:03:53AM
2,807 posts

Form Designer - Upload image field can't pull it in


Design and Skin Customization

Can you put a debug in the template to see if the variable is there?
  219