Forum Activity for @michael

michael
@michael
09/12/17 11:42:25PM
7,823 posts

Couple of gallery delete issues


Using Jamroom

delete moves the item into the Recycle Bin, you can undelete it from there.
DASHBOARD -> RECYCLE BIN

Deleting it from the detail page is working for me. Which skin? Are you up to date with the latest stuff from the marketplace?
michael
@michael
09/12/17 10:40:11PM
7,823 posts

Profile Tab Home Link for Ninja Skin


Ning To Jamroom

add the link into the profile_menu.tpl file.
ACP -> SKINS -> NINJA -> TEMPLATES -> profile_menu.tpl -> MODIFY

Just add it at the top before the foreach loop.
<a href="{$jamroom_url}/{$profile_url}/"><div class="profile_menu_entry">Home</div></a>
michael
@michael
09/12/17 06:05:56AM
7,823 posts

User Registration


Design and Skin Customization

If you use a Site Builder page, there is a widget you can drop in.
michael
@michael
09/11/17 08:28:27PM
7,823 posts

Keeping $_user Timely


Jamroom Developers

That would be:
jrUser_session_sync($_user['_user_id']);
"Refresh an existing user session with the latest User and Profile info"
michael
@michael
09/11/17 07:38:18PM
7,823 posts

Profile Photo required on "Create Account"


Ning To Jamroom

List calls are any lists created by the jrCore_list function (which is pretty much every list of anything on the site)

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

You'll see them everywhere in the templates,

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

So if there is a list that you only want to show stuff that HAS an image, alter its {jrCore_list} call to include require_image=
{jrCore_list ............. require_image="profile_image"}
michael
@michael
09/11/17 06:42:30PM
7,823 posts

Jamroom.net Forum signature change is not saved


Using Jamroom

This is fixed in jrForum ver 2.2.1.

The core issue was the $_user session details were not being updated, so the sig would only show as changed after the user logged out and back in again.

Thanks for finding this. :)
michael
@michael
09/11/17 05:44:46PM
7,823 posts

How do I change a form?


Genosis

This is released in the marketplace now.
michael
@michael
09/11/17 04:59:43AM
7,823 posts

Skin design


Installation and Configuration

That's the #content div.

The structure of your page will be something like:
<body>
...
  <div id="wrapper">
....
     <div id="content">
...

and the content will have a max-width on it.

OR.....
it could be the .row class.

One of those will have a max-width of about 1280px on it. change it to max-width of 100% should fix it.

Hard to know without looking at the exact page what the right element is.
michael
@michael
09/10/17 10:30:57PM
7,823 posts

Skin design


Installation and Configuration

Im not sure about the code in relation to the question, just trying to make sure steps to edit the .css file are appearing in your site after you upload them, so..

What you have there are 2 separate systems, the STYLE tab in the ACP and the upload the .css file. If possible I would recommend using just one or the other rather than mixing them. My preference is for the .css files because you have more control.

The way the STYLE tab works is it stores extra CSS in the database that is applied after all the .css files have been processed, so it gets the final word. It also uses the !important tag a lot so if its defined as a rule there, then no changes to the .css files are going to make any difference while there is a STYLE tab rule defined for the same thing.
  187