Forum Activity for @michael

michael
@michael
07/02/17 09:46:49PM
7,827 posts

Changing Menu Display Order


Design and Skin Customization

The function that controls profile menu is {jrProfile_menu}

Docs: "{jrProfile_menu}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1997/jrprofile-menu

In the iSkin its found in the profile_header.tpl file around line 120 ish. It does have an order set and looks like this:
{jrProfile_menu template=$menu_template profile_quota_id=$profile_quota_id profile_url=$profile_url order="jrAction,jrBlog,jrCombinedAudio,jrAudio,jrCombinedVideo,jrVideo,jrGallery,jrGroup,jrEvent,jrYouTube,jrVimeo,jrFlickr"}

Recommended that you clone the skin to your own skin before making changes:

Docs: "Creating your own Skin ( Clone from an Existing Skin )"
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin

Or use the Template Editor to make the change:

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

So your changes survive updates.
michael
@michael
07/01/17 05:15:32PM
7,827 posts

Vertical Display in jrList


Jamroom Developers

That $profile_tpl is an example of this method:

Docs: "HowTo: Use a CAPTURE to avoid using another file for a jrCore_list call"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1637/howto-use-capture-to-avoid-using-another-file-for-jrcore-list-calls

Check that out. normally template="some-file-in-your-skin.tpl" but you can use capture to skip the need to have a file in the filesystem. Good for when you just need a quick structure which you know will never be re-used.
michael
@michael
07/01/17 05:11:59PM
7,827 posts

Recurring events have no image


Suggestions

Yeah, its possible to add any new field to the UPDATE screen via the Form Designer, but the module's not setup to recognize it there.

Let me know if you track down the issue. :)
michael
@michael
07/01/17 05:09:19PM
7,827 posts

Pinterest-like (masonry) display for images (and possibly video)


Design and Skin Customization

If you want someone to build it for your site, we take on custom work now:

Forum Post: "Now Creating Custom Sites"
https://www.jamroom.net/the-jamroom-network/forum/new_posts/52684/now-creating-custom-sites
michael
@michael
06/29/17 11:53:46PM
7,827 posts

Smarty Language Modifiers


Jamroom Developers

need to know the URL to tell you exactly, here's a guess: (screenshot)
captialize.jpg captialize.jpg - 118KB
michael
@michael
06/29/17 09:40:48PM
7,827 posts

Smarty Language Modifiers


Jamroom Developers

If the original input was 'About' but you actually got 'ABOUT' then its likely that CSS is effecting that change too. Perhaps look for the base cause and remove that instead of forcing another layer of CSS changes onto it.

CSS: "Make all of these all-caps, then make this one capitalize." vs "(do nothing, use original input)"
michael
@michael
06/29/17 09:36:01PM
7,827 posts

Pinterest-like (masonry) display for images (and possibly video)


Design and Skin Customization

Nothing done in default skins as far as Im aware. To replicate it, you'd need a list of images:

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

and a jquery script to arrange those images similar to pinterest's layout:
http://www.jqueryscript.net/tags.php?/Pinterest/
michael
@michael
06/29/17 09:33:37PM
7,827 posts

Firefox Error while downloading audio


Design and Skin Customization

Really need some steps to see it happening to offer any useful advice.
michael
@michael
06/28/17 09:09:06PM
7,827 posts

Recurring events have no image


Suggestions

The "recurring event" option is only available on the CREATE form, not the UPDATE form, so there is no way to turn a one time event into a recurring event.
michael
@michael
06/28/17 08:39:18PM
7,827 posts

Guestbook entries not showing


Using Jamroom

In the jrGuestBook's item_index.tpl file you'll see this code:
{jrCore_list module="jrGuestBook" search1="guestbook_owner_id = `$_profile_id`" order_by="_created numerical_desc" limit="250"}
add quota_check=false to it so it becomes
{jrCore_list module="jrGuestBook" search1="guestbook_owner_id = `$_profile_id`" order_by="_created numerical_desc" limit="250" quota_check=false}

This will be added to the next version of jrGuestBook.

Thanks for finding this.
  210