Forum Activity for @douglas

douglas
@douglas
12/21/15 06:56:54AM
2,812 posts

Sign up form


Design and Skin Customization

There isn't a template for the signup form, it is hard coded in the jrUser modules php files.

Can you let us know what your trying to accomplish?

Thanks!
douglas
@douglas
12/21/15 06:48:41AM
2,812 posts

Support tickets Module


Installation and Configuration

I just tested it here, that field only shows to admin users, it should not show to a regular users that has access to create a ticket.
douglas
@douglas
12/21/15 06:38:23AM
2,812 posts

blog categories


Jamroom Developers

Which skin are you using?
douglas
@douglas
12/21/15 06:31:08AM
2,812 posts

Support tickets Module


Installation and Configuration

1. That field is so you can open the ticket on behalf of another email address.

2. Sure, just enclose your tab code in and if statement checking to see if the viewer is logged in.

{if jrUser_is_logged_in()}
Your tab code here...
{/if}

If you want it on the bottom of every page, put it in your footer.tpl file.
douglas
@douglas
12/17/15 05:11:32AM
2,812 posts

newest ningja skins do not work right for me


Ning To Jamroom

I think the issue here is your wanting us to test/fix something that is no longer supported.

You really shouldn't be using the old site builder modules, they are not compatible with the latest skins.
douglas
@douglas
12/16/15 03:43:04AM
2,812 posts

Video streaming questions


Using Jamroom

Jamroom converts videos to .flv and .m4v formats and uses and HTML5 player (jPlayer - http://jplayer.org/) to play the file, if a users browser does not support HTML5 players, it reverts to using a flash player, hence the two different formats.

Most mobile devices and computer browsers these days support HTML5 players.

Also, if you set a price on an uploaded video, Jamroom creates a sample of the video so the viewer can't see the entire video without paying for it.

Hope this helps!
douglas
@douglas
12/15/15 04:29:06AM
2,812 posts

Video streaming questions


Using Jamroom

1. The file isn't downloaded to the users computer for streaming. The file streams from your website using HTML5/Flash players.

3. Most devices these days are supported, all audio and video files that are uploaded to your site get converted to a file(s) that can be played on desktop and mobile devices.
douglas
@douglas
12/14/15 04:22:17AM
2,812 posts

Adding background image to Nova skin header


Design and Skin Customization

Sorry, I gave you the wrong place to add the image... in your skins/YOURSKIN/css/site.css file, find this:

/* @title Head Inner Div */
/* @help This is the inner div for the site header */
.head_inner {
    background-color:#949799;
    padding:6px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px 4px 0 0;
    box-shadow: 0 0 5px #111;
}

and replace the background-color line with your background code:

/* @title Head Inner Div */
/* @help This is the inner div for the site header */
.head_inner {
    background:transparent url('{$jrNova_img_url}/headerbg.gif') no-repeat;
    padding:6px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px 4px 0 0;
    box-shadow: 0 0 5px #111;
}
  121