Forum Activity for @michael

michael
@michael
05/15/14 07:06:31PM
7,832 posts

What is Subscribe to Unlock?


Jamroom Developers

^^ what @MAD© said.

When I come here and I'm on the http:// version I'm in the logged out state. I change the address bar to https and im in the logged IN state.
michael
@michael
05/15/14 02:52:33AM
7,832 posts

I can't sell an album as a whole help needed


Using Jamroom

Could you take some screenshots that correspond to the points in the video to help me understand what is not there for you that is there in the video please.
michael
@michael
05/15/14 01:54:57AM
7,832 posts

I can't sell an album as a whole help needed


Using Jamroom

Paypal cant sell albums. I think there was a thread about this earlier on this week.

Ill look for it.

For now watch this video about how to sell an album with foxycart.

"sell an album"
Sell an album


--edit--
It was your thread:
mick303:...what i will do create the album as one file and apply paypal buy it now to that....
https://www.jamroom.net/the-jamroom-network/forum/design-and-skin-customization/11264/is-there-any-way-of-changing-the-paypal-into-sterling

updated by @michael: 05/15/14 01:57:09AM
michael
@michael
05/14/14 09:49:15PM
7,832 posts

Setting up website, got new solo package,couple queries about editing the home page


Installation and Configuration

As for selling a whole album it should be simple with foxycart.

STEPS:
* Upload an album
* add a price per track.
* add a price for the whole album

The user can then purchase each track individually or the full album from the album page.

Here is a video on the process:

"Sell an Album"
Sell an album
michael
@michael
05/14/14 09:35:09PM
7,832 posts

Setting up website, got new solo package,couple queries about editing the home page


Installation and Configuration

No problem answering any of your questions @nellyslideguitar It just really helps everyone who comes looking later if you can put them each in a thread.

a thread titled "How do we customize the look of the foxycart cart?"

Is much easier to find later when searching, than at the bottom of "Setting up website, got new solo package,couple queries about editing the home page".

--edit--
"Customizing Your FoxyCart Checkout and Receipt Pages"
http://support.webvanta.com/support_article/615719-customizing-your-foxycart-checkout-and-receipt
updated by @michael: 05/14/14 09:36:42PM
michael
@michael
05/14/14 07:07:38PM
7,832 posts

Audio Sample


Jamroom Developers

Natedogg265:...Or rather what is the audio sample file for?

as an option if you don't use it i guess.

Long thread here:
https://www.jamroom.net/the-jamroom-network/forum/suggestions/5345/audio-snip-too-short

about how long it should be.

The sample is put into use when the audio file is for sale, but the site owner could put it into use in other ways via the Form Designer if they wanted to too.

Say for example "60 second song plays for non-logged in users".
michael
@michael
05/14/14 06:20:07PM
7,832 posts

Requesting files from other modules items


Jamroom Developers

The question is very broad so im not sure where you want the answer to start from.

To learn how to create a module perhaps start here:

"Creating a Module"
http://www.jamroom.net/the-jamroom-network/documentation/development/26/creating-a-module

Then once you have a module you need a 'view' to cover the "User-2 wants to see " part of it.

In that view function you can write queries against any other modules datastore to get the information that you want.

If its required, then add that as a requirement to the modules _meta() function.

eg:(you can see that the jrChainedSelect module requires jrCore 5.1.36 or above to work.)
 */
function jrChainedSelect_meta(){
    $_tmp = array(
        'name'        => 'Chained Select',
        'url'         => 'chained_select',
        'version'     => '1.1.0',
        'developer'   => 'The Jamroom Network, ©' . strftime('%Y'),
        'description' => 'Manage chained_select field options and choices',
        'category'    => 'forms',
        'license'     => 'mpl',
        'requires'    => 'jrCore:5.1.36'
    );
    return $_tmp;
}
michael
@michael
05/14/14 06:14:04PM
7,832 posts

Display uploaded files and download them


Jamroom Developers

Sure. You can do it for any file type that is allowed to be uploaded.

What file type is allowed to be uploaded is set by the form that includes the upload field.

How it is displayed is determined by you in the item_details.tpl page of the module.

Look at the jrFile module for examples.
michael
@michael
05/14/14 06:11:13PM
7,832 posts

Is it possible to auto hide/show header in jr5


Design and Skin Customization

RickStaRr:I think it would be so cool if the header would appear/hide on scroll.

It depends on what skin your using as to how the header behaves. I think the elastic skin has a fixed header while some of the others use a scrolling header.

Take a look at the demos on your mobile device and see if any of them behave the way your wanting.
http://www.jamroom.net/demos
  695