Forum Activity for @michael

michael
@michael
06/28/17 06:13:30AM
7,826 posts

Where is CSS code located in a JR site? And related questions


Design and Skin Customization

The question your asking is "What are some web development techniques", there are a lot of them and lots of tools to help.

This is an older video about tools we use:
Development Tools the Jamroom Team uses

They're not the only tools. Each web developer finds different sets of tools that work for them.

Its not our goal to try to train web developers, there are already lots of resources on the web for that, but we do try to help out those interested.
web_dev.jpg web_dev.jpg - 234KB
michael
@michael
06/28/17 05:54:37AM
7,826 posts

Where is CSS code located in a JR site? And related questions


Design and Skin Customization

There are many ways to work with jamroom because there are multiple layers of over-ride capabilities.

So for web developers who like to work with normal web development techniques, going to look for settings in the ACP to try to change the color of something is not a natural flow for them.

For web developers the way they work with design on the web is through alteration of .css files and an IDE or editor.

The current active skin will have a containing folder /css and all the css files will be contained in that. You can access it via SFTP into your server:

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

Then the css will be in:
/skins/(YOUR SKIN)/css/(many files in here).css

In that same skins folder you will find a file called
/skins/(YOUR SKIN)/include.php

which is where you will find the skin_init() function which pulls in all of the .css files that the skin uses, you can add more if needed.

1. skin .tpl files
These are the structure of each page, its made up of a combination of smarty and html.

2. skin_init
This is found in the include.php file for the skin and fires off functions which allow the system to understand what files need to be included in order for the skin to function

3. widgets
These are a different way to create a page, you can use Site Builder and widgets OR a somepage.tpl file to create the page structure. Each widget will have an id which can be targeted by CSS if specialized styling is required for that widget

4. widget ids
CSS can target structure via multiple methods, id's, classes and even by the element name. CSS is a language of styling, so you can say "everything that has a class of blue_thing, make it the color blue" "everything that has the id of some_widget make its corners rounded and give it an orange background"

5. css code
A design language for styling html elements via the use of tags attached to the elements. usually classes

6. html code
The language of the structure of web pages, tells the browser what things need to go on the page.
michael
@michael
06/27/17 11:55:43PM
7,826 posts

Invitation only users


Using Jamroom

The Form Designer can be used to add additional fields to forms provided by existing modules:

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/1275/using-the-form-designer

Or it can be done programatically in your module by adding it in the "Events and Listeners" system:

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/1011/events-and-listeners
michael
@michael
06/26/17 10:36:39PM
7,826 posts

Guestbook entries not showing


Using Jamroom

What are the steps you use to check? when I login as a normal user and write in the guest book it shows, so don't understand how to setup to investigate this situation.
michael
@michael
06/26/17 05:06:21PM
7,826 posts

Follow me skin, forum strange text hard to read?


Design and Skin Customization

Your skin needs a CSS adjustment to that template (screenshot).

Its probably the /skins/(your skin)/jrForum_item_detail.tpl file, but not sure.

Use this same technique to locate the template if you cant find it:
Forum Question: How to adjust a template
padding.jpg padding.jpg - 118KB

updated by @michael: 06/26/17 05:06:35PM
michael
@michael
06/26/17 04:58:34PM
7,826 posts

videos not streaming after 6.1.0b


Jamroom Developers

This is a known issue. I can see in your source code that the video options for the player are:
"m4v": "https://www.centricbeats.com/video/stream/video_file/13/key=1/file.m4v",
                                m4v: "https://www.centricbeats.com/video/stream/video_file_mobile/13/key=1/file.m4v",
The first file plays while the second file does not play

PLAYING
https://www.centricbeats.com/video/stream/video_file/13/key=1/file.m4v

NOT PLAYING
https://www.centricbeats.com/video/stream/video_file_mobile/13/key=1/file.m4v

It not working for you makes me think the fix has not yet been released in the beta core you're using.

Check a different skin as the tracker says the issue is in the skin override of the module template, so if you try something like elastic, it wont have an over-ride and you can know the issue is skin related.
michael
@michael
06/26/17 04:50:27PM
7,826 posts

videos not streaming after 6.1.0b


Jamroom Developers

you re-ran:
ACP -> MODULES -> PROFILES -> VIDEO -> TOOLS -> VERIFY VIDEO FILES

??
michael
@michael
06/26/17 04:21:17PM
7,826 posts

Guestbook entries not showing


Using Jamroom

From your screenshot it looks like some of them are in the PENDING system. Waiting for admin to approve them.

Check the QUOTA CONFIG tab for 'item approval'
ACP -> MODULES -> PROFILES -> GUESTBOOK -> QUOTA CONFIG -> ITEM APPROVAL
item_approval.jpg item_approval.jpg - 70KB

updated by @michael: 06/26/17 04:24:27PM
michael
@michael
06/26/17 04:15:12PM
7,826 posts

Recurring events have no image


Suggestions

Sounds like you've enabled 2 things.

* recurring events
and
* multi day events
michael
@michael
06/26/17 04:13:24PM
7,826 posts

FollowMe Sticky Menu on MS Edge


Design and Skin Customization

This is a good video on a technique to locate which template something comes from:
Forum Question: How to adjust a template

Or if you have an IDE ( like phpstorm ) setup you can search on the term
id="profile_menu"
and it will return the location of what you're after.
profile_menu.jpg profile_menu.jpg - 168KB
  211