Forum Activity for @michael

michael
@michael
12/17/14 07:48:26PM
7,832 posts

Session Length Too Short


Using Jamroom

The time when I notice what your describing Ken is when I use the address bar, or a bookmarked link that uses http://.

Because all logged in activity takes place on https:// on jamroom.net.

But if im using the clickable navigation then it always keeps me on https so don't see the issue and haven't had to use my login details in a long time.
michael
@michael
12/17/14 07:45:05PM
7,832 posts

How to change the # comments shown?


Suggestions

Strumelia:..P.S. I'm learning?- I did the change from my server side template. Because yes....

Seams like it! :)

I'm a fan of ctrl+f. I use that to find what I'm after in the browser. ctrl+f "chocolate". When there are tons of pages, you its less useful.

Fan of all comments on the same page.
michael
@michael
12/17/14 07:38:33PM
7,832 posts

code doesnt accept code but editor source code does


Using Jamroom

What gets output? What did you expect to get output? Whats in my_forum_template.tpl?

-- edit --
you would need to create that template in:
/skins/jrNingja/my_forum_template.tpl

in order to use it.

What Im trying to understand is: is it an issue with the Site Builder 'code' block system or is it an issue with the code your trying to use not working.

-- edit --
try adding HELLO WORLD to the code block and see if it gets output.
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
12/17/14 07:34:26PM
7,832 posts

Forgot how to rename cloned skin...again


Ning To Jamroom

Can't see any reason to delay releasing it. Its in the marketplace now. Run your system update and you should be good to go. If you find any issues, let me know. (in a new thread. :) )
updated by @michael: 12/29/14 09:23:54AM
michael
@michael
12/17/14 06:33:43PM
7,832 posts

How to Add A TinyMCE Box on an Edit button?


Design and Skin Customization

You would need to build a module for it. What the user puts into the space would need to be stored in a datastore.

Its not a trivial thing that your asking. Where are you wanting to put it? In the profiles section or the main site section?

As a light overview the steps would be:
* add the text area to the template (html)
* initiate the textarea to be un-hidden and have the tinymce editor put into it (javascript)
* save the contents of the editor. (javascript and php)
* display the previously saved content (php and html)

So its going to be a bit fiddly while you learn how to build a module. (unless you can use an already existing module, but need to know the answers to the questions above to follow that path further.) :)
michael
@michael
12/17/14 06:24:40PM
7,832 posts

Page Layout


Using Jamroom

Is this still an issue?

When you say "resizing columns in Page Layout mode" your meaning when your creating a new page layout right. There is no way to change an existing one.

I'm interpreting it as "the slider bar thing doesnt slide in IE11." Is that the right interpretation?
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
12/16/14 11:17:58PM
7,832 posts

How to change the # comments shown?


Suggestions

The comments are controlled by the comment_form.tpl template
/modules/jrComments/templates/comment_form.tpl

They are set by default to show 500.

You can change that in the templates by going to
ACP -> USERS -> USER COMMENTS -> TEMPLATES -> comment_form.tpl

Then MODIFY and search for this line:
{jrCore_list module="jrComment" search1="comment_module = `$jrComment.module`" search2="comment_item_id = `$jrComment.item_id`" order_by="_created `$_conf.jrComment_direction`" limit="500" profile_owner_id=$profile_owner_id}

The limit="500" is what your after. Change that to whatever you want.

eg: changing it to this:
{jrCore_list module="jrComment" search1="comment_module = `$jrComment.module`" search2="comment_item_id = `$jrComment.item_id`" order_by="_created `$_conf.jrComment_direction`" page=$_post.p pagebreak="2" pager="true" profile_owner_id=$profile_owner_id}
would give you 2 comments per page and a pager visible to move to the next page.

The full details for jrCore_list can be found here:

"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list
michael
@michael
12/16/14 11:04:53PM
7,832 posts

some code help plz


Design and Skin Customization

soaringeagle:...what I don't understand is how to get the title then the content truncated below.....

The title will be on one variable while the content is on another. To find out what variables there are, use {debug}.

Once you know that there are {$item.xxxxxx_title} and {$item.xxxxxx_body} then you can use truncate.

You use it like this:
{$item.xxxxxx_title|truncate:60}
{$item.xxxxxx_body|truncate:1000}
michael
@michael
12/16/14 11:01:06PM
7,832 posts

Session Length Too Short


Using Jamroom

video upload should not be effected by session expires. the default is 6 hours and the setting in the screenshot is just over 8 days.

How long are the videos taking to upload?

is there anything in your error logs?
  617