Forum Activity for @michael

michael
@michael
02/09/16 08:28:45PM
7,832 posts

Sendy.co


Off Topic

I've asked them for a demo copy to see how hard it would be to turn it into a module.

we'll see.
michael
@michael
02/09/16 12:29:56PM
7,832 posts

Sendy.co


Off Topic

you're thinking of it as a replacement to mailgun?
michael
@michael
02/09/16 12:27:07PM
7,832 posts

Signup form


Design and Skin Customization

The site builder system has a LOGIN and a SIGNUP widget that you just select and drop into the page.

Docs: Site Builder
https://www.jamroom.net/the-jamroom-network/documentation/site-builder
michael
@michael
02/09/16 01:45:24AM
7,832 posts

jrCore_item_action_buttons


Jamroom Developers

that whole function is:
function jrProfile_is_profile_view(){
    return jrCore_get_flag('jrprofile_view_is_active');
}
So you could set the flag on your ajax processing page perhaps:
jrCore_set_flag('jrprofile_view_is_active', true);
michael
@michael
02/08/16 07:01:55PM
7,832 posts

How To Extract Playlist as .M3U, HTTP or M3U


Design and Skin Customization

You'd want to add a template to your skin with the same name as the URL you're after

/skins/YOUR SKIN/somename.tpl

That will show at
your-site.com/somename

Then construct that page as you need it structure wise. Once you have the structure working correctly, use {jrCore_list}

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

To get the data you're after.
michael
@michael
02/08/16 06:05:35PM
7,832 posts

how do I get notified of new user accounts in order to approve them...


Using Jamroom

you can use the newsletter module to test send an email.
ACP -> COMMUNICATION -> NEWSLETTERS

or there is a test email in the email core too
ACP -> COMMUNICATION -> EMAIL CORE -> TEST EMAIL.
michael
@michael
02/07/16 03:19:33PM
7,832 posts

Changing header depending on template


Design and Skin Customization

the name of the template your are in should show up as a variable in the {debug}

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/contents

then you can do an {if} statement to check against that:

Docs: "Template blocks"
https://www.jamroom.net/the-jamroom-network/documentation/development/3126/template-blocks
michael
@michael
02/07/16 03:16:26PM
7,832 posts

beta launch page (how do I turn it off?)


Installation and Configuration

1400x930 is the default one.

If you ask each question in a new thread with a descriptive title, the others searching later will find their answers easily. :)
michael
@michael
02/05/16 11:36:52PM
7,832 posts

Search is creating errors.


Using Jamroom

There doesnt seam to be anything wrong with the query, i tried it here and it executed.

Was there any other information in the debug log.

Try it with a different skin, if it works on a different skin, then its likely an issue with the code.

It would be easier to help if you outlined how I can see the issue here for me on a default install other wise im stuck just guessing.
michael
@michael
02/05/16 11:30:22PM
7,832 posts

Charting Issue


Using Jamroom

The music_chart_row.tpl looks like this:
        {if $item.chart_direction == 'up'}
            {if $item.chart_change > 10}
                {assign var="chart_image" value="hot_up"}
                {else}
                {assign var="chart_image" value="up"}
            {/if}
            {elseif $item.chart_direction == 'down'}
            {if $item.chart_change > 10}
                {assign var="chart_image" value="cool_down"}
                {else}
                {assign var="chart_image" value="down"}
            {/if}
            {elseif $item.chart_direction == 'same'}
            {assign var="chart_image" value="same"}
            {elseif $item.chart_direction == 'new'}
            {assign var="chart_image" value="new"}
        {/if}

Thats the bit that determines what arrow shows.

It reads:
"if the chart direction is up, and the change is greater than 10, then show the HOT UP arrow, otherwise show the normal UP arrow"
then the same for the down, same and new.

You can ditch the HOT UP and COOL down if you don't want them.
  431