Forum Activity for @douglas

douglas
@douglas
12/07/15 04:57:58AM
2,807 posts

new ningja skin version unusable (menu bug and others)


Ning To Jamroom

If your using a cloned skin nothing in the jrNingja skin update will change anything in your cloned skin, it just isn't possible.

Unless, you've manually taken the changes from the jrNingja skin and added them to your cloned skin?
douglas
@douglas
12/06/15 04:28:14AM
2,807 posts

Adding TAGS to a template search


Design and Skin Customization

Yes, this should be fixed for the next release.
douglas
@douglas
12/06/15 04:26:11AM
2,807 posts

Global config tabs not updating


Design and Skin Customization

If you want to remove it all together, you'll want to do that through the database admin.

ACP > Developer > Developer Tools > Database Admin

You'll find the skin config settings in the jr_jrcore_setting table.
douglas
@douglas
12/06/15 04:14:44AM
2,807 posts

@ Tag mentions in Profile Forums


Using Jamroom

I'm seeing an issue too, the @ tags do not get converted if the editor is enabled for the forum.

I'll get a ticket open for this.

Thanks!
douglas
@douglas
12/05/15 05:58:52AM
2,807 posts

Unwanted HTML gap/space


Using Jamroom

I see the same, the issue is a line break is added for each table tag after saving.

So if there are total of 8 table tags, then 8 line breaks are added.

<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<table>
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
douglas
@douglas
12/05/15 05:06:18AM
2,807 posts

Global config tabs not updating


Design and Skin Customization

When you remove a skin config setting from the skins config.php file, it does not remove the default/saved value from the database, and if you change anything in the skins config.php file, then you'll want to run the ACP > System Tools > Integrity Check tool so the database gets updated, and then run the ACP > System Tools > Reset Cache so your changes show in the skin templates.

Hope this helps!
douglas
@douglas
12/04/15 01:45:56PM
2,807 posts

Global config tabs not updating


Design and Skin Customization

Can you show us the code your using?

Thanks!
douglas
@douglas
12/03/15 12:16:57PM
2,807 posts

embed issues


Using Jamroom

Strumelia:
OK Douglas thanks! I will get working on this.
I'm assuming you mean the config.php file that in the Ningja and in my custom SKINS, not the ones in the various modules.

Yes, the skin not the modules.
douglas
@douglas
12/03/15 10:25:47AM
2,807 posts

embed issues


Using Jamroom

Strumelia:
michael:
It was the config.php file. so nothing you need to do. no templates were effected.

Ok, but now there's another Ningja skin update.
The two updates since yesterday were:
Version 1.1.6
-Fix: Fixed profile_item files skin config variables.
Version 1.1.5
-Fix: Fixed skin config where players were not being set to the correct type.

Does this mean these updates to "config.php" file have automatically been applied to my CUSTOM/active skin? I'm not understanding how that works...shouldn't I be doing something to get my custom skin updated with these two fixes? Thanks for explaining to me...

The profile_item_index.tpl, profile_item_list.tpl, profile_item_detail.tpl and config.php files were the files modified for both of those updates.

In your profile_item_*.tpl files, make sure that your version has the correct skin name in the if statement... ie.

{if $profile_disable_sidebar != 1  && strpos($current_url, $_conf.jrNingja_forum_profile) !== 0}

has your skin name and not something else.

The config.php file had the wrong values for the player settings. It is at the bottom of the file. You should have this for the Player Type selection:

    // 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'   => 60,
        'section' => 'Players'
    );
    jrCore_register_setting('YOURSKINNAME', $_tmp);

make sure to change YOURSKINNAME to the name of the skin your using.

Hope this helps!
douglas
@douglas
12/03/15 04:24:19AM
2,807 posts

embed issues


Using Jamroom


This has been fixed in the latest Audio module and on your site izhmel.
  123