Forum Activity for @michael

michael
@michael
02/15/18 12:03:55PM
7,832 posts

Disable profile header for forum


Design and Skin Customization

sekeri:...I think hiding profile header and sidebar for a specific link or quota should be customizable.
It is customizable, its just a template edit and a flag.

You should be able to accomplish the same thing with template edits. The function exists so that modules dont need to ask you to make skin adjustments in order for them to work.

open another thread about what you're trying to accomplish and we can talk about how to get there.
michael
@michael
02/13/18 08:29:39PM
7,832 posts

Helping my members see their 'pending' Followers


Using Jamroom

What is your recommendation for understandable wording please? :)
michael
@michael
02/13/18 07:20:31PM
7,832 posts

Helping my members see their 'pending' Followers


Using Jamroom

im saying that the state of the checkbox is what ALL users profiles will be changed to, not what all users profiles are currently set at.

So if you checked it, then ran the tool, then all profiles would be checked.

If profileA then changed theirs to unchecked, most of your users would be checked, but some would be unchecked. There is no way to represent that "some users are one state while other users are another state" just by viewing a single checkbox.

If you want to make all users checked, check the checkbox and run the tool. If you want to make them unchecked, uncheck the checkbox and run the tool.

What you cant do is look at the checkbox and ascertain any knowledge about the state the profiles are in.
michael
@michael
02/13/18 06:46:12PM
7,832 posts

Make something show up only on an item for specific quota


Jamroom Developers

put code into [c o d e]the code goes in here[/ c o d e] blocks.

{* this is a comment, it will not show. *}
michael
@michael
02/13/18 06:44:33PM
7,832 posts

Groups Sidebar Question


Using Jamroom

You can have pretty much anything you want, just need to figure out what you want, then request it.

The main function for requesting stuff from a .tpl file is {jrCore_list}

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

So first you would figure out where you want it to come out by putting:
WHERE DOES THIS COME OUT???????
into various templates until you figure out which template is the one you want. Then move it around that template until you get it into the location you want it.

Once you know the point, then you can use {jrCore_list} to get a list of whatever you want. Either by using a static number or by using one of the variables available to you in the template.
michael
@michael
02/13/18 06:39:28PM
7,832 posts

Helping my members see their 'pending' Followers


Using Jamroom

The box is not an indicator of state, its just a checkbox.

There is the form session system that tries to remember the contents of forms while they are being filled out, it could be remembering the state of the checkbox.

It also could be the default state of the checkbox.

Either way, the state the checkbox on the TOOL is set at is irrelevant, (the one on the GLOBAL CONFIG is an indicator, its important.) as that state is only used when the tool is run.
michael
@michael
02/13/18 11:56:49AM
7,832 posts

The audio import not working


Using Jamroom

If its on our hosting we have tools to look for why, but since its not on our hosting you need to provide enough information for us to understand whats going on in order to get assistance.

Check your error logs for information that looks related to audio uploads.

Also check your SYSTEM CHECK tool to make sure the server has no red lights.
michael
@michael
02/13/18 11:42:55AM
7,832 posts

Helping my members see their 'pending' Followers


Using Jamroom

1. correct.

2. notification system has not changed at all.

3. system has not changed at all. Yes correct.

4. no. The members in 'pending' state are not effected. If they were pending before the setting change they will be pending after the setting change.


I'll get the old wording fixed up, thought I did that but obviously not.
michael
@michael
02/12/18 11:33:09PM
7,832 posts

Different div classes


Jamroom Developers

You can call any div anything you like
<div class="class1 class2 class3">.....

Then you can use CSS to adjust those classes however you like.
.class1{
 background-color: red;
}
.class2{
 padding: 10px
}
.class3{
 // something else
}

https://www.w3schools.com/cssref/sel_class.asp

or if you like books, Im a big fan of O'Reilly books for learning web development:

Amazon: "O'Reilly: CSS: The Definitive Guide: Visual Presentation for the Web"
https://www.amazon.com/CSS-Definitive-Guide-Visual-Presentation/dp/1449393195/ref=dp_ob_title_bk
  150