Forum Activity for @michael

michael
@michael
09/21/16 06:00:19PM
7,826 posts

How to eliminate Latest Music box from my Profile page


Using Jamroom

Yeah, thats easy to forget. Well done. Any subsequent edits to that template wont need that step because the template will already be active.
michael
@michael
09/21/16 05:58:51PM
7,826 posts

Profiles missing after migration from Jamroom 4 to 5


Using Jamroom

Check that the audio module is enabled in the system
Check that that profile is allowed to use the audio module in the QUOTA CONFIG

Docs: "Audio"
https://www.jamroom.net/the-jamroom-network/documentation/modules/273/audio

Docs: "Quota"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2985/quota

We don't have enough info to actually answer the question, so have to guess.
michael
@michael
09/21/16 12:42:30AM
7,826 posts

How to eliminate Latest Music box from my Profile page


Using Jamroom

That whole page is generated by your profile_index.tpl template:
ACP -> SKINS -> jrNingja -> TEMPLATES -> profile_index.tpl -> MODIFY

Its this section:
        {* Latest Music and Latest Videos Row *}
        {if $profile_jrAudio_item_count > 0 || $profile_jrVideo_item_count > 0}
        <div class="row">

            <div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                    {jrCore_include template="profile_index_music.tpl"}
                </div>
            </div>


            <div class="{if $profile_jrAudio_item_count > 0}col6{else}col12 last{/if}">
                <div class="block">
                    {jrCore_include template="profile_index_video.tpl"}
                </div>
            </div>

        </div>
        {/if}

Docs: "Template Blocks"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/3126/template-blocks

The code reads "If there are more audio items or video items than zero, then show this section."

Since you only have videos, perhaps change it to this:
        {* Videos Row *}
        {if $profile_jrVideo_item_count > 0}
        <div class="row">

            <div class="col12 last">
                <div class="block">
                    {jrCore_include template="profile_index_video.tpl"}
                </div>
            </div>

        </div>
        {/if}

--edit--
Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor
updated by @michael: 09/21/16 12:43:05AM
michael
@michael
09/20/16 08:08:43PM
7,826 posts

Private group (puzzle: member cannot edit posts)


Using Jamroom

Not seeing any issues with this here.

my admin user created a group, a standard user with the 'can create discussions' permission added a discussion. then edited the discussion, then commented on the discussion, then edited the comment on the discussion.
michael
@michael
09/20/16 07:46:00PM
7,826 posts

Groups not showing from profile pages (only from dropdown)


Using Jamroom

Has 'Holly' or 'elizabeth-t' created any groups?
michael
@michael
09/20/16 06:12:45PM
7,826 posts

Groups not showing from profile pages (only from dropdown)


Using Jamroom

When I'm logged out and try to view a group that im not a member of and that group is NOT private, I can see the group.

If I change the state of the group to private, when I am logged out I get asked to login before continuing.

If I then click the JOIN GROUP button the group will show in my "Groups you follow" section, but I cant access it until I'm approved. While not approved I see "your application to join this group is currently pending"

So Im not seeing what you are seeing. check the privacy settings for the group, and maybe the quota settings for the group, could be related.
screenshot_group_private.jpg screenshot_group_private.jpg - 74KB
michael
@michael
09/20/16 06:07:22PM
7,826 posts

Groups not showing from profile pages (only from dropdown)


Using Jamroom

Got a URL? I'll try to setup here to see if I can replicate what you are seeing, but steps to reproduce are always helpful to speed me along. :)
michael
@michael
09/20/16 04:40:03PM
7,826 posts

Using different skins & site builder


Ning To Jamroom

sure, you can use any skin you like, or clone whichever skin you like and customize it so it looks like you want it to look.

The thing is the skin designers have a lot of power to choose what is displayed on the skin and how it is displayed, so changing skin can mean having different features.

The data on the back-end and the profile functionality should remain fairly constant, but the front end features and design could be different.

That was one of the intended purposes of site builder, to allow you to setup your own skin features. Before site builder it was the skin designer who decided the layout of the lists of items, now with site builder you can choose for yourself the initial layout of the top level pages becomes less important.

Take a look at the demos to see the exact same database content laid out on the different skins:

http://demo.jamroom.net/jrNingja/mda-the-blaquesmyth
http://demo.jamroom.net/jrElastic/mda-the-blaquesmyth

The main difference in the Ningja skin is the profile index page as is shown above for elastic, and ningja. The ningja one has more than just the timeline on the top page of a profile.
michael
@michael
09/20/16 04:30:42PM
7,826 posts

how to set [s] bbcode for "strikethrough" site-wide?


Design and Skin Customization

Just to be clear, what has been added to the next version of jamroom is the bbcode strikethrough.

If you wanted that button in the editor, you still would need to have added it. We didn't add the strikethrough button to the editor as a default button. So you did the right thing if you want to have it there as a button. :)
michael
@michael
09/20/16 04:23:01PM
7,826 posts

getting an error with Mastro 4 skin with Annika live wall Audio buttons


Design and Skin Customization

Its really helpful, thanks very much sean. The reason its happening is that the default way any list of items are displayed is via the layout provided by the modules item_list.tpl file. But the skin has the option to change the look of that by adding an override template.

In this case the override has changed the way the share button was setup from being an 'onclick' action activated to being setup when the profile is initialized.

This works find ON the profile, but doesn't work when the same templates are used on the main section of the site because the profile init() function isn't firing in that location.

The fix is the skin needs to change its way of doing things.
  345