Forum Activity for @michael

michael
@michael
11/26/14 02:03:05AM
7,832 posts

Padding


Using Jamroom

Looks like an older version of the slate skin. Try the new one. If its still no good, what do you reckon would look good? ("graphic design is very weak in this one" - yoda)
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
11/26/14 02:01:15AM
7,832 posts

Widgets rearrange after editing


Using Jamroom

ok, something to do with the order that its set as after saving. Havent got time to look at it tonight. Thanks for finding it, I'll look for that tomorrow.
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
11/26/14 01:58:51AM
7,832 posts

After editing page, redirects to index page


Using Jamroom

This might be related to the smiley module, if it was enabled too. Looking for it caused me to find an issue with that. The new version fixes that issue, not sure if its the same issue your seeing or not.

Will have the new version in the marketplace this evening.
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
11/26/14 01:37:45AM
7,832 posts

After editing page, redirects to index page


Using Jamroom

Its staying on the same page for me, I'm guessing either: your not on the latest version, or its an IE11 thing.

I'll go see what its doing so I can understand if its likely to be a browser thing.
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
11/26/14 01:19:11AM
7,832 posts

Profile Layout Part 2


Using Jamroom

Totally right. Its too small.

--edit--
got this fixed in the next version 1.0.4

Thanks
updated by @michael: 12/22/16 11:55:59AM
michael
@michael
11/26/14 01:10:50AM
7,832 posts

Inline Activity Feed: Is there one or going to be one ?


Ning To Jamroom

This should explain it a bit more thoroughly:

"Merging module and skin updates"
https://www.jamroom.net/the-jamroom-network/documentation/development/2181/merging-module-and-skin-updates
updated by @michael: 12/29/14 09:23:54AM
michael
@michael
11/25/14 11:36:07PM
7,832 posts

An 'Heads Up'


Ning To Jamroom

Pam Givens"]
humm...sorry. I didn't save that change cause I thought it was probably not correct. I would like to add a page for Artist Spotlight. If I can figure that out then I can add some of the other navigation items.

Thanks again
Pam
P.S. I know it's not your job to teach me coding https://www.jamroom.net/data/media/0/0/jrSmiley_131_smiley_image.png
:style="height: 20px" alt=";-)">

Above we are talking about how to add a link to a page. its just this:
<li><a href="{$jamroom_url}/artists-spotlight">Artists Spotlight</a></li>
But thats just a link to a location. You also need to create what is supposed to be there at that location, so you need a new template file too.

So what you want is to create a file:
/skins/(YOUR SKIN)/artist-spotlight.tpl

That is what will show when you go to the url:
http://YOUR-SITE.com/artists-spotlight

Right now that file doesn't exist, so you will get a "Page not found" error.

You can play around with saving stuff, it might break sometimes but that's how you learn. Breaking is nothing to worry about, it can always be fixed. So have a play.

What you need inside that artist-spotlight.tpl is some code to tell the page what to do.

If you look at the index.tpl file that already exists in your skin it will look something like this:
{jrCore_include template="header.tpl"}

// A bunch of code in here.....

{jrCore_include template="footer.tpl"}

That's where you would design the page to make "Artist Spotlight" have the stuff you wanted in it. (The site builder's aim is so you don't have to do this stuff. It will be here soon.)
updated by @michael: 12/29/14 09:23:54AM
michael
@michael
11/25/14 02:19:04AM
7,832 posts

Module Relationships and Question about counting number entries in multiple fields.


Using Jamroom

You could use the 'daily_maintenance' event. That fires once a day. When it fires, if your module is listening for it:

eg: In the this module
https://www.jamroom.net/the-jamroom-network/networkmarket/22/db-and-system-backup

In the _init() function include file:
/modules/jrBackup/includes.php
jrCore_register_event_listener('jrCore', 'daily_maintenance', 'jrBackup_daily_maintenance_listener');

That code listens for the 'daily_maintenance' and when that runs it fires its own function:
jrBackup_daily_maintenance_listener()

Take a look at that to see how the code is applied.

In your code you would use the search function to return the audio data you want, then use the update function to update the datastore.

Take a look in modules/jrAudio/index.php to see the update functions.
michael
@michael
11/25/14 02:09:24AM
7,832 posts

My YouTube Video Sizing ( Updated 28/11/14 )


Design and Skin Customization

The slate skin is still in (beta) but I wouldn't expect it to become much prettier. Design is something I'm just not good at, so if you want to help me pretty it up, all design input welcomed :)

Otherwise once I get it working properly, I'll have to ask doug for a hand.

Site Builder and the Slate skin suggestions taken here:
https://www.jamroom.net/site-builder/forum
michael
@michael
11/25/14 01:27:34AM
7,832 posts

trouble with Smiley Module - thanks for any help!


Using Jamroom

I've added in support for a "free size" in the Global Setting:
ACP -> SITE -> SMILEY SUPPORT -> GLOBAL CONFIG -> SMILEY SIZE -> free size

When this is set the smileys will have no size imposed on them and will be the size of the original image.

Its in the marketplace now. Its a good idea. Are the smileys you're using open source? could they be used as an alternative for the current default ones perhaps?
  632