Forum Activity for @michael

michael
@michael
06/16/16 09:46:14PM
7,826 posts

Changing or adding templates sitebuilder


Design and Skin Customization

a checkbox will store an "off" or "on" value. So if you stored it on 'audio_free' then
{if $audio_free == "on"}
The audio checkbox is checked.
{/if}

If you don't know what variables are available to you, then {debug}

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug
michael
@michael
06/16/16 08:39:56PM
7,826 posts

{if} statement - works in some templates not in others


Jamroom Developers

spelling mistake.

Its not the {if} statement thats not working its the condition your asking it to check does not evaluate to true.

You're asking it a question, its doing the right thing. The information you're passing it must be wrong.

You're saying that {$group_intro_video} exists and contains "52" but the if statement not firing and it not printing are both calling you a liar. ;)

throw a screenshot of the debug up here and I'll see what I see.

Oh, and check that your {degbug} is written right next to that if statement. Could be that the location of the debug call is in a different template to where you're trying to use it.
michael
@michael
06/16/16 08:33:20PM
7,826 posts

Extra menu level site builder?


Using Jamroom

Its an imposed limit, it was going to be 2 because of mobile devices, but its capable of 3.
-top
--first
---second

If you want to make that suggestion, accompany it with a working example of a menu 4 levels deep that works for mobile too, or a suggestion about how to handle that.
michael
@michael
06/15/16 06:33:33PM
7,826 posts

Stop Rating emails


Installation and Configuration

If you don't want to make a module, then perhaps put text into your email
ACP -> MODULES -> ITEM FEATURES -> ITEM RATINGS -> TEMPLATES -> email_new_rating_message.tpl

And instruct the receivers of the email where to turn off the ratings notifications.

The situation: a user has posted something, a different user has rated it. Thats something the poster of the thing would likely want to be notified about. If they don't want to be notified about it, they can turn it off.
michael
@michael
06/15/16 05:26:02PM
7,826 posts

Troubleshooting Payments


Using Jamroom

When the payment fails the subscription will cancel returning the artist to the end-of-subscription quota.

They'll need to re-subscribe.
michael
@michael
06/15/16 05:22:15PM
7,826 posts

Google Analytics for Custom Domains


Suggestions

PatriaCo:.....
Interesting thing just happened google-site-verify just changed slightly.
It now requires a trailing>
....

Jamroom pages are html5

Stackoverflow question: "Do we still need end slashes in html5?"
http://stackoverflow.com/questions/7366344/do-we-still-need-end-slashes-in-html5#7366380

Quote: (img, gr, col, command, embed, hr, img, input, meta) tags are Void Elements so they do not need an end tag.

If google requires it, please post links to the docs which say so.
michael
@michael
06/15/16 05:15:10PM
7,826 posts

Creating a Page


Using Jamroom

pch:.... 5) Well, How to make a page a module? Will it still act like a page?

Docs: "The Module System"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/899/the-module-system
michael
@michael
06/15/16 05:12:11PM
7,826 posts

Changes through the Template editor not showing on the site


Using Jamroom

pch:.....Also, you forgot to answer the two remaining questions in my first post. Please advise.
Thanks.....
Better to put one question per thread so others searching later can easily identify what the thread is about.

Once that thread is marked 'solved' they know they will find the answer to their question there.

Thanks. :)
michael
@michael
06/15/16 04:54:15PM
7,826 posts

Aparna Module: from dev server to live server


Using Jamroom

I thought we added a feature where any modules prefixed with 'xx' could be exported via the package manager without a jamroom.net developer account. Not seeing it though.

Will look into this.
michael
@michael
06/14/16 10:32:46PM
7,826 posts

Changing or adding templates sitebuilder


Design and Skin Customization

You're probably using the "Item List" widget to pick and choose what you want. You'll see at the bottom of that widget is displayed code that looks like this:
{jrCore_list module="jrAudio"}

That code is template code.

There is also a template code widget where you can paste that exact code in to get back the same results. Only its even more flexible, because you can use any of the {jrCore_list} functions:

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

if you put this in your template code widget:
{jrCore_list module="jrAudio" template="some-template.tpl"}
Then instead of using the default jrAudio item_list template found at
/modules/jrAudio/templates/item_list.tpl

It will do whatever you tell it to do by altering the code at
/skins/(YOUR SKIN)/some-template.tpl

So you can make it look however you like.
  384