Forum Activity for @michael

michael
@michael
08/16/17 06:32:52PM
7,832 posts

Receiving a error message when creating gallery image


Jamroom Developers

Wonder why.....

When you try again does it work? ( connectivity perhaps )
Is it consistently reproducible? ( bug in the jamroom system, or something to do with your site )

Not seeing any issues here. Got some login details that I can try on your site and see if I can upload it from here?
michael
@michael
08/16/17 06:29:10PM
7,832 posts

Adding custom attributes to comments


Jamroom Developers

the jrTags module might be useful to look at, it injects stuff into other modules datastores. It will save the tags for an audio file of jrAudio directly to that modules datastore.

useful for reference maybe.
michael
@michael
08/16/17 06:22:47PM
7,832 posts

Translating great grand


Genosis

The function that prints that information is found in the profile_header.tpl file.

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

Adjust line 176 which currently reads
 {jrGenCore_get_viewer_relation profile_id=$_profile_id assign="out"}

make that not work by "commenting it out", which just means turn that section into a comment in the code rather than running the actual code. We leave comments in the code by surrounding them with {* this is just a comment *}. so change it to:
{* {jrGenCore_get_viewer_relation profile_id=$_profile_id assign="out"} *}
SAVE CHANGES then activate the template and it will be gone.

Need to think about the language thing......mmm.

--edit--
ah, sorry, the template is found at:
ACP -> SKINS -> GENERAL -> GENOSIS FAMILY TREE -> TEMPLATES -> profile_header.tpl -> MODIFY
updated by @michael: 08/16/17 06:24:01PM
michael
@michael
08/16/17 12:26:43AM
7,832 posts

How do I change a form?


Genosis

That makes sense. We'll get something in place to make that possible.
michael
@michael
08/15/17 11:23:56PM
7,832 posts

Audio files path


Installation and Configuration

Don't link to that directory from any web url though, if you want a file for some mobile device or other use a php file to retrieve it, check the user is allowed access, then deliver it from there.
michael
@michael
08/15/17 11:19:16PM
7,832 posts

Adding custom attributes to comments


Jamroom Developers

Threading is already an option of the jrComments module.
ACP -> MODULES -> ITEM FEATURES -> COMMENTS -> GLOBAL CONFIG -> LIST OPTIONS -> ENABLE THREADING

In answer to the question though: You can add anything you like to any items datastore, but it must be prefixed with the modules prefix. For the comments module, that's 'comment_'.

You can add any extra fields you like to an item, they're just stored as KEY : VALUE pairs that become available in the templates along with the rest of the items info.
threading.jpg threading.jpg - 235KB
michael
@michael
08/15/17 11:00:11PM
7,832 posts

Use of blockquote tag in tinyMCE under Follow Me skin


Design and Skin Customization

Thanks, I thought it was the BR's that was the issue.

ISSUE:
* CREATE allows blockquotes, but UPDATE doesn't allow blockquotes

Will look into it, thanks.
michael
@michael
08/15/17 10:58:01PM
7,832 posts

How do I change a form?


Genosis

That module isn't setup to work with the Form Designer, its running on a slightly different system.

TECHNICAL REASON: Its not using a datastore structure in the database, its using its own tables, so the Form Designer feature can't manipulate it.

What was it you're thinking with "different order of the dates"? Do yo think a different order would be an improvement?

Thanks.
michael
@michael
08/15/17 10:35:22PM
7,832 posts

Widgets on SB Index page falling outside page layout


Using Jamroom

Send my you're login and I'll take a look at the page, see if I can see. Send to support at jamroom dot net along with
* a link to this thread
* your login details


Change your admin password occasionally ;) Looking.

--edit--
For me logged in as 'admin' kent still shows up ok.

--edit edit--
I take that back, there is something weird.
http://ourtownstory.co.uk/kent

does not show for me, but
http://www.ourtownstory.co.uk/kent

does. The difference is the www. vs non-www. and another thing that is weird is its not showing the user menu for me on that page. (screenshot).

My guess is something maybe stuck in the filesystem version of the cache.

Try doing a Manual clear of the caches:

Docs: "Manually Clearing the Cache"
https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do#manually-clearing-caches

Docs: "Connecting to your server using SFTP"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-hosting/2552/connecting-to-your-server-using-sftp
no_menu.jpg no_menu.jpg - 104KB

updated by @michael: 08/15/17 10:43:27PM
michael
@michael
08/15/17 01:53:24AM
7,832 posts

Use of blockquote tag in tinyMCE under Follow Me skin


Design and Skin Customization

I went with this in /modules/jrComment/templates/item_list.tpl
                    {if isset($_conf.jrComment_editor) && $_conf.jrComment_editor == 'on'}
                        {$item.comment_text|jrCore_format_string:$item.profile_quota_id:null:"nl2br"}
                    {else}
adding the :null:"nl2br"} to the jrCore_format_string function if the editor is on. Cant think of any use-case where editor output would ever need nl2br.
  197