Forum Activity for @garymoncrieff

gary.moncrieff
@garymoncrieff
12/05/15 02:17:20PM
865 posts

Grid of Videos


Design and Skin Customization

I seen grid for the video module today. Didn't check the others.
gary.moncrieff
@garymoncrieff
12/05/15 09:35:57AM
865 posts

Grid of Videos


Design and Skin Customization

Select Grid from the template section when your adding the widget.
gary.moncrieff
@garymoncrieff
12/05/15 02:02:11AM
865 posts

A more Powerfull Event Module


Suggestions

While I agree alot of that can be done via the form designer selling tickets isn't as straight forward. You could manually link to a product in the merchandise store but that only works if the user can use the merchandise store.
gary.moncrieff
@garymoncrieff
12/02/15 05:10:37AM
865 posts

embed issues


Using Jamroom

When I enabled Nova I was seeing the exact same issue as above, adding the option to the skin solved it.

I am also seeing {jrCore_media_player} invalid value received for "type" parameter in jrNingja. Guessing it must be the custom music profile page in jrNingja that's at fault here.

Everything is upto date on the beta channel.
gary.moncrieff
@garymoncrieff
12/02/15 02:02:59AM
865 posts

embed issues


Using Jamroom

Guys the setting isn't there for the Nova skin, it has yet to be added.

Open your skins config.php file

Add the following at the bottom, just before

return true;

    // Player Type
    $_ptype = array(
        'blue_monday'          => 'Blue Monday Player',
        'gray_overlay_player'  => 'Gray Overlay Player',
        'player_dark'          => 'Midnight Player',
        'black_overlay_player' => 'Black Overlay Player',
    );
    $_tmp   = array(
        'name'    => 'player_type',
        'label'   => 'Player Type',
        'help'    => 'Select the type of player you want to use on your site.Original = Blue Monday New = New Light Player',
        'type'    => 'select',
        'options' => $_ptype,
        'default' => 'black_overlay_player',
        'order'   => 49,
        'section' => 'Radio And TV'
    );
    jrCore_register_setting('jrNova', $_tmp);

You will want to pay attention to the order no, change as required and change jrNova to the name of your skin.

Now once you have done that, do an integrity check and the setting should now be located in the Radio and TV tab of Nova's skin settings.
gary.moncrieff
@garymoncrieff
12/01/15 08:18:35AM
865 posts

Still Unable to upgrade


Using Jamroom

I'll try and explain the steps I took.

Add this to the ningja index template page.

Under

{jrCore_include template="header.tpl"}

Add


<script type="text/javascript">
    $(document).ready(function(){
        jrLoad('#sm',core_system_url +'/index_artists');
        jrLoad('#top_artists',core_system_url +'/top_artists');
        jrLoad('#top_songs',core_system_url +'/top_songs');
        jrSetActive('#default');
    });
</script>

Now we add the code to show the featured tabs, place it where you want it to show:

    {* FEATURED TABS *}
    <div class="row">

        <div class="col12 last">

            <div class="menu_tab">
                <div id="default" class="p_choice fartist" onclick="jrLoad('#sm','{$jamroom_url}/index_artists');jrSetActive('#default');">{jrCore_lang  skin=$_conf.jrCore_active_skin id="50" default="featured"}&nbsp;{jrCore_lang  skin=$_conf.jrCore_active_skin id="52" default="artists"}</div>
                <div id="s_song" class="p_choice fsong" onclick="jrLoad('#sm','{$jamroom_url}/index_songs');jrSetActive('#s_song');">{jrCore_lang  skin=$_conf.jrCore_active_skin id="50" default="featured"}&nbsp;{jrCore_lang  skin=$_conf.jrCore_active_skin id="51" default="songs"}</div>
                <div id="s_video" class="p_choice fvideo" onclick="jrLoad('#sm','{$jamroom_url}/index_videos');jrSetActive('#s_video');">{jrCore_lang  skin=$_conf.jrCore_active_skin id="50" default="featured"}&nbsp;{jrCore_lang  skin=$_conf.jrCore_active_skin id="15" default="videos"}</div>
                <div class="clear"></div>
            </div>
            <div class="finner mb8">
                <div id="sm"></div>
            </div>

        </div>

    </div>

Copy the following template files from Nova into the Ningja skin

index_artists.tpl
index_artists_row.tpl
top_artists.tpl
top_artists_row.tpl
top_songs.tpl
top_songs_row.tpl

Copy the following css file from Nova into the Ningja ccs folder

core_tabs.css

Open up the include.php file in your ningja template folder you need to register that new css file so it is included.

Add the following under // Bring in all our CSS files

jrCore_register_module_feature('jrCore', 'css', 'indiegospel', 'core_tabs.css');

Remember to change indiegospel to the name of your skin.

Now open the Ningja config.php file and add the following.

    // Featured Artist ID's
    $_tmp = array(
        'name'     => 'featured_artist_ids',
        'type'     => 'text',
        'default'  => '',
        'validate' => 'not_empty',
        'label'    => 'Featured Artist ID\'s',
        'help'     => 'Enter the artist ID\'s you want to show in featured tab section.<br><br><span class="form_help_small">Note: Enter up to 4 ID\'s separated by a comma. ie. 1,2,3,4. If left blank the Featured Artist tab will show 4 random artists.</span>',
        'section'  => 'Home Page',
        'order'    => 64
    );
    jrCore_register_setting('indiegospel',$_tmp);

    // Featured Song ID's
    $_tmp = array(
        'name'     => 'featured_song_ids',
        'type'     => 'text',
        'default'  => '',
        'validate' => 'not_empty',
        'label'    => 'Featured Song ID\'s',
        'help'     => 'Enter the song ID\'s you want to show in featured tab section.<br><br><span class="form_help_small">Note: Enter up to 4 ID\'s separated by a comma. ie. 1,2,3,4. If left blank the Featured Song tab will show 4 random songs.</span>',
        'section'  => 'Home Page',
        'order'    => 65
    );
    jrCore_register_setting('indiegospel',$_tmp);

    // Featured Video ID's
    $_tmp = array(
        'name'     => 'featured_video_ids',
        'type'     => 'text',
        'default'  => '',
        'validate' => 'not_empty',
        'label'    => 'Featured Video ID\'s',
        'help'     => 'Enter the video ID\'s you want to show in featured tab section.<br><br><span class="form_help_small">Note: Enter up to 4 ID\'s separated by a comma. ie. 1,2,3,4. If left blank the Featured Video tab will show 4 random videos.</span>',
        'section'  => 'Home Page',
        'order'    => 66
    );
    jrCore_register_setting('indiegospel',$_tmp);

Note the order No, and adjust as needed, and again don't forget to change indiegospel to the exact name of your skin.

Add the following to Ningja's en_us lang file, at the bottom

$lang[50] = 'Featured';
$lang[51] = 'Songs';
$lang[52] = 'Artists';

Now do a skin integrity check and clear your cache.

If done correctly you should now see the tabs on your homepage.
gary.moncrieff
@garymoncrieff
11/30/15 12:53:05AM
865 posts

Still Unable to upgrade


Using Jamroom

Ken Rich:
Hi Gary,

I have a featuring system as well in the Nova that shows 4 members, 4 songs, 4 videos, etc. all from the paid subscriber quota only, but I can't get it to work in Ningja. Something about how it resets with ajax or java. I have members who pay to be in that.

The rest I could handle but not those two issues.

Are you referring to if you reload the page there is no tab showing by default? I got the tabs working in Ningja this morning.

Just not sure I can share the changed Ningja skin on here as it's not a free skin?
ningjatabs.jpg ningjatabs.jpg - 55KB
gary.moncrieff
@garymoncrieff
11/29/15 02:19:07AM
865 posts

Limiting the number or size of attachments in posts


Using Jamroom

Welcome. Another area where this could be improved on is if in profile daily limitsit had the option to limit forum attachments per day. So that would give two levels the number per post and a maximum per period.

Just an idea.
gary.moncrieff
@garymoncrieff
11/28/15 11:36:40AM
865 posts

Still Unable to upgrade


Using Jamroom

Would it not be easier just to redesign the front-page in Ningja than to match that of Nova than all of this?
gary.moncrieff
@garymoncrieff
11/28/15 11:33:59AM
865 posts

Limiting the number or size of attachments in posts


Using Jamroom

Is Forum -> General Settings -> Max Attachment Limits (Select the maximum number of file attachments that can be attached to a forum post)what you're looking for?
  24