Forum Activity for @michael

michael
@michael
11/28/16 11:03:31PM
7,832 posts

JR5 to JR6 Ningja Latest activity "array" issue


Using Jamroom

If you are currently using the skin "Ningja", in JR6 it has been renamed to "Ninja".

If you have not cloned the skin, or made any alterations to it, just install the "Ninja" skin from the marketplace and use that going forward.

However, if you have customized it, read on:

There are 2 ways forward, keep the same code base, or update to the new. If you have just made a couple of alterations, it may be easier to install the "Ninja" skin and apply your changes to there.

If that seams like too much work, one known issue is that on the index page, in the "Latest Activity" area you will see "array" instead of the activity entry. This is because a lot has changed around the timeline system and the current skin requires changes to work.

The change is to locate this line around line 387 ish of index.tpl
ACP -> SKINS -> NINGJA -> TEMPLATES -> index.tpl -> MODIFY
{jrCore_list module="jrAction" order_by="_item_id numerical_desc" template="index_activity.tpl" pagebreak=12 page=$_post.p}
change it to:
{jrCore_list module="jrAction" order_by="_item_id numerical_desc"  pagebreak=12 page=$_post.p}

* click the SAVE CHANGES button
* click the CANCEL button
* in the 'active' column, locate the checkbox next to index.tpl, check it
* scroll to the bottom, click SAVE CHANGES

You may need to rest caches if that doesn't fix it immediately.

--
Related Docs:

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor

updated by @michael: 07/08/21 02:07:25AM
michael
@michael
11/28/16 09:37:17PM
7,832 posts

Jamroom 6 Upgrade Guide


Announcements

Details on how to run the integrity check can be seen here:

Docs: "Somethings wrong what do I do?"
https://www.jamroom.net/the-jamroom-network/documentation/problems/114/somethings-wrong-what-do-i-do
michael
@michael
11/27/16 09:41:37PM
7,832 posts

cannot add vids after update


Installation and Configuration

no, the version in the marketplace is the simple version, if you paid for it you probably got the full version.

If there is a visual problem, its probably a CSS thing. Maybe clashing classes perhaps. Where is a page to see the issue on?
michael
@michael
11/27/16 03:39:51PM
7,832 posts

cannot add vids after update


Installation and Configuration

That character you had in there was not a legitimate character for its intended purpose.

The purpose was an HTML comment, correct syntax is:
<!-- this is an html comment -->

updated by @michael: 11/27/16 03:40:15PM
michael
@michael
11/27/16 03:36:54PM
7,832 posts

Simple Chat Jamroom 6 - Audible Notification


Using Jamroom

if you type:
:page michael
an audible notification chime will sound on michaels computer
michael
@michael
11/26/16 10:18:23PM
7,832 posts

Site builder caused everything to disappear


Using Jamroom

Difficult directions to understand.

It sounds like you've over-ridden a skin page with a site builder page.

If so this message should have shown in an alert window:
Quote: This URL is currently mapped to the Follow Me skin "index.tpl" template.

Click OK to use a fresh Site Builder page instead.

If you want to restore the page to how it is now, just delete the Site Builder page you created
and the current page will return.

Click OK to continue, or cancel to keep it how it is now.

Guessing you clicked OK.

If that sounds correct, then the solution is to go to the page and click the DELETE PAGE button.
michael
@michael
11/26/16 10:13:58PM
7,832 posts

cannot add vids after update


Installation and Configuration

The issue appears to be on this page:
view-source:https://www.dreadlockssite.com/soaring-eagle/video

taking a look at your source code, firefox shows issues by highlighting the code in red.

Your video page has issues. It looks like the cause of the issue is this comment:
<!--/* End Sulvo Traffic Tag */—>

It looks like non-valid html characters are entered into it, probably from copy+pasting code.

Should probably be:
<!-- /* End Sulvo Traffic Tag */ -->
michael
@michael
11/26/16 10:02:59PM
7,832 posts

cannot add vids after update


Installation and Configuration

That is the correct location. The jrCombinedVideo_create_video() function does the positioning relative to the page.

If you can let me have the login details to somewhere where its happening, then I can take a look.
michael
@michael
11/26/16 01:19:39AM
7,832 posts

cannot add vids after update


Installation and Configuration

That change log changed the location of the div being written to the page to add it in at the end of the page.

So long as your page has a
</body>
tag, it should work as normal. Make sure you don't have any other attributes attached to it though.

This is the exact code that the module runs:
$_data = str_replace('</body>', '<div id="create_video_dropdown" class="overlay item block_content create_video_box" style="display:none"></div></body>', $_data);

So check the html source of your page for that div being created, it should be being created.
  314