Forum Activity for @michael

michael
@michael
11/18/24 03:13:35AM
7,715 posts

Font size audio


Using Jamroom

You can paste it into the CUSTOM EDITOR tab on the STYLE section of the skin.

What you need there though is an adjustment to the H1 tag to be able to target it better. That means a template adjustment.
here.jpg here.jpg - 260KB
michael
@michael
11/13/24 12:38:12PM
7,715 posts

Font size audio


Using Jamroom

It certainly is, but to do it I'd need to see the page that its on.

Browsers have tools built into them to allow you to fiddle with how things look. Generally you hit F12 and a panel opens then you use the arrow pointer from there to click on the thing you want to fiddle with then mess around with the CSS panel to get it how you want.

Once you know how you want it you copy those values into a .css file thats part of your site and upload it to make it permanent.
adjust.jpg adjust.jpg - 831KB
michael
@michael
10/14/24 01:28:58AM
7,715 posts

Login Page not found after server migration.


Installation and Configuration

That makes it more difficult. Do you have access to your database?

I tried to create an account to see if your login was set to 'instant login' but its set to email verification then did not send the email so I cant get logged in that way.

If it was my site the first thing I would do would be to go into the 'settings' table and make that change, so new users who signed up were instantly signed in.

Then after creating a new account I would change its level access from 'user' to 'master' so that account was a master account.

From there I would be able to look into the ACP to see what could be causing the issue.

---
Another possible idea is to go into the 'settings' table of your database and change the currently set skin back to 'jrElastic' or whatever skin is on the system. Then after the skin changes, see if the user/login form comes back. If it does then its an issue with the skin.
michael
@michael
10/08/24 05:44:50AM
7,715 posts

Login Page not found after server migration.


Installation and Configuration

Try turning off the custom login page from the ACP. It looks like you're not using the default one so probably the skin is over-riding it then not working properly.
michael
@michael
09/01/24 08:33:33PM
7,715 posts

How can I add Google verification to my Jamroom hosted sites?


Using Jamroom

The meta tag is the best way. Add it to meta.tpl then refresh the caches. Go to the top page of the site, right click and choose "view page source". If you can see the tag there, then go back to google and hit 'VERIFY' button and it will be verified.
michael
@michael
08/24/24 05:48:32PM
7,715 posts

limiting streams of audio


Jamroom Developers

Take a look in the marketplace, there's a few that seem similar. (screenshot)
* Play Control
* User Daily Limits
Look the closest to what you're after.
limits.jpg limits.jpg - 365KB
michael
@michael
08/20/24 01:14:37AM
7,715 posts

ads in timeline feed


Design and Skin Customization

Its possible. You can do it in the foreach loop that outputs your timeline. Figure out which template that is and it will be something like:
{foreach $_item as $_i}
.... .stuff
{/foreach}
Then just put your add in there every X number of times like this
{foreach $_item as $_i}
                        {if $_i@iteration % 2 == 0}
                            PUT YOUR ADVERT IN HERE
                        {/if}
.... .stuff
{/foreach}


That will put an add every 2 posts. change the % 2 to % 6 to do it every six times.
michael
@michael
08/14/24 11:27:14PM
7,715 posts

Battle Module


Jamroom Developers

There's probably a lot thats different. The one that jumps to mind is if there are any calls to ????_mysql() then for newer php you need to put an 'i' after it for "improved" _mysqli().

That was one of the broken things.

Jamroom hides a lot of that though if you go through its functions. Jamroom5+ also has 'datastores' which JR4 didn't have. They're really useful. Using them means you don't need to define your SQL so rigidly. Still can if you want, but datastores are a different option. KEY -> VALUE storage structure. Its really neat.
michael
@michael
08/14/24 01:34:10AM
7,715 posts

Battle Module


Jamroom Developers

I think the whole difficulty level of having to separate it into a module is the reason it isn't one. There's a lot of module/skin integration needed to get it really working.
michael
@michael
08/08/24 03:20:35PM
7,715 posts

Custom Newsletter Filter?


Using Jamroom

You can do that now in a variety of ways.
* put all new users in their own quota, move to different quota once logged in, sent emails to that quota.
* use the "have never opened a newsletter" filter
* use a custom filter of: user_last_login = 0
never.jpg never.jpg - 356KB
1