Forum Activity for @intro2music

Intro2Music
@intro2music
06/11/14 11:36:39AM
121 posts

Assigning another User to main profile


Jamroom Help

Hi guys,

I'm not sure if it's supposed to be like this but, I assigned another user to the main (admin) profile. The user is set as a 'Standard User'. I'm assuming by being a Standard User that they will only be able to edit items that they have created themself on the main profile but, I've yet to test this out.

My main issue is that once the new user is associated with the main profile, they no longer have access to their own (original) profile, only their User account details. The result looks like this... http://www.dougiemartin.com/mick-mccluskey. Is this the way it's supposed to be?
I forgot to say, I'm using the jrSolo skin, not sure if this has a bearing on things or not.

Mick

updated by @intro2music: 08/20/14 09:33:03AM
Intro2Music
@intro2music
06/10/14 12:08:12PM
121 posts

Setting Audio Album Price


Using Jamroom

Thanks for clearing that up, Brian. Although I have a few licences for Foxycart I haven't needed to use them yet, so I haven't saw the 2 price fields before.

Cheers.
Intro2Music
@intro2music
06/10/14 05:21:39AM
121 posts

Setting Audio Album Price


Using Jamroom

I uploaded an audio album with 14 tracks and set a price of £6.99. The profile audio section shows each track as being £6.99 and there doesn't seem to be a way of buying the whole album.

Is whole album sales only achievable by using the Foxycart module or can it be done just by having the Paypal module do the job?

The site is http://www.dougiemartin.com
Mick

updated by @intro2music: 07/11/14 01:03:49PM
Intro2Music
@intro2music
06/06/14 06:11:32PM
121 posts

Aparna clone module - arrange items


Jamroom Help

It works perfectly! Thanks very much, Michael. You were right, once I edited the item_index.tpl my troubles were over.

Now for my next module...
Intro2Music
@intro2music
06/06/14 07:33:26AM
121 posts

Aparna clone module - arrange items


Jamroom Help

Thanks Michael, got it changed after all. Great! The main list looks fine.

Still no luck being able to arrange the channels items on the profile pages tho' - the drag/drop doesn't take.

Mick
Intro2Music
@intro2music
06/05/14 05:01:27PM
121 posts

Aparna clone module - arrange items


Jamroom Help

Do you mean the module data browser? I'm not sure where to find the datastore.

I can see that each channel in the data browser list is set as, "channels_display_order: 0"

I tried your "channels_display_order numerical_asc" suggestion but still no joy. I also tried (without luck) "_item_id numerical_asc"
Intro2Music
@intro2music
06/05/14 02:48:42PM
121 posts

Aparna clone module - arrange items


Jamroom Help

I've cloned a module using Aparna and created a new module 'i2Channels'. After creating a few items I noticed that there wasn't an 'arrange items' icon on the channels list page so I added a bit code to the include php to show the correct icon.
    jrCore_register_module_feature('jrCore','item_order_support','i2Channels','on');

The arrange items icon now shows and, when clicked takes me to the set item order page. But, dragging and dropping the items to arrange them in a suitable order doesn't change the order that the items show up on the 'Channels' page list.

There's obviously something I'm missing. Can anyone help?
updated by @intro2music: 07/10/14 09:40:22AM
Intro2Music
@intro2music
03/20/14 04:46:02PM
121 posts

Aparna clone text area problem


Jamroom Developers

Thanks for the tip, Michael.
Intro2Music
@intro2music
03/20/14 04:30:09PM
121 posts

Aparna clone text area problem


Jamroom Developers

Is this the code that should be deleted?

                        <div class="p5">
                            <h2>{$item.channels_title}</h2>
                            {foreach from=$item item="v" key="k"}
                                {assign var="m" value="Channels"}
                                {assign var="l" value=$m|strlen}
                                {if substr($k,0,$l) == "channels"}
                                    <span class="info">{$k}:</span> <span class="info_c">{$v}</span><br>
                                {/if}
                            {/foreach}
                        </div>
Intro2Music
@intro2music
03/20/14 04:24:28PM
121 posts

Aparna clone text area problem


Jamroom Developers

I managed to get rid of the images but I'm not sure what to delete from item_detail.tpl to stop the text from showing on the page. Here's my code...

    <div class="block_content">

        <div class="item">
            <div class="container">
                <div class="row">
                    <div class="col9 last">
                        <div class="p5">
                            <h2>{$item.channels_title}</h2>
                            {foreach from=$item item="v" key="k"}
                                {assign var="m" value="Channels"}
                                {assign var="l" value=$m|strlen}
                                {if substr($k,0,$l) == "channels"}
                                    <span class="info">{$k}:</span> <span class="info_c">{$v}</span><br>
                                {/if}
                            {/foreach}
                        </div>
                    </div>
                </div>
            </div>
        </div>
        {jrCore_item_detail_features module="i2Channels" item=$item}
    </div>

updated by @intro2music: 03/20/14 04:25:58PM
  9