Forum Activity for @michael

michael
@michael
06/15/16 05:26:02PM
7,832 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,832 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,832 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,832 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,832 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,832 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.
michael
@michael
06/14/16 10:11:14PM
7,832 posts

Stop Rating emails


Installation and Configuration

The value you're after is stored in the jrUser datastore. Specifically the jr_jruser_item_key table and the user_jrRating_new_rating_notifications key.

When the value of this is set to 'off' no mail is sent.

So you could make a module to turn it off when new users are created. The default for when this is not set is to send the email, then allow the users to de-activate it if desired.

One possible module idea is to listen for when the new user is created, and add the desired entry then.

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/development/1011/events-and-listeners
michael
@michael
06/14/16 09:37:20PM
7,832 posts

YouTube module not fetching images


Using Jamroom

Check on a default skin. On your customized skin you have this code coming as output:
<img src="" alt="Ethiopian music by ytayew dagne - yenea abeba" class="img_scale">
The most obvious guess issue there is that you're using the wrong variable to try to output the image.

Check what variable you're trying to use in your template, then check the {debug} output to see if that variable exists or not.

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug
michael
@michael
06/14/16 07:13:32PM
7,832 posts

Affiliate Sales Systems?


Installation and Configuration

No particular recommendations from me.
michael
@michael
06/14/16 07:10:33PM
7,832 posts

Optimal Image Size For Product Page Photos


Using Jamroom

you can have whatever size you like and whatever ratio you like.

The class .img_scale will scale any image to fit the size of the div it lives in.

You can have any aspect ratio you like:
https://www.jamroom.net/user/image/user_image/4/large/crop=1:1
https://www.jamroom.net/user/image/user_image/4/large/crop=1:2
https://www.jamroom.net/user/image/user_image/4/large/crop=1:3
https://www.jamroom.net/user/image/user_image/4/large/crop=16:9
https://www.jamroom.net/user/image/user_image/4/large/crop=4:3

You can have any of these sizes
24,xxsmall,40,xsmall,56,72,small,96,icon96,128,icon,196,
medium,256,large,320,larger,384,xlarge,512,xxlarge,800,xxxlarge,1280
  385