Forum Activity for @ultrajam

SteveX
@ultrajam
05/31/17 11:17:00AM
2,584 posts

Playlist popup/lightbox window


Design and Skin Customization

If the info from that link doesn't work...

The modal is positioned relative to the button using javascript.

It would be easiest to move your button to the right.

If you can't do that you could try changing the function jrPlaylist_position in /modules/jrPlaylist/js/jrPlaylist.js
/**
 * position the playlist on the page via javascript so it doesnt get hidden
 * by the overflow hidden on the .row class.
 */
function jrPlaylist_position(module, item_id){
    var bid = $('#playlist_button_' + module + '_' + item_id);
    var bpr = $(window).width() - bid.offset().left;
    var bpt = bid.offset().top;
    $('#playlist_' + module + '_' + item_id).appendTo('body').css({'position': 'absolute', 'right': (bpr - 35) + 'px', 'top': (bpt + 35) + 'px'});
}
SteveX
@ultrajam
05/31/17 05:44:45AM
2,584 posts

How to add YouTube to the VideoPro skin?


Design and Skin Customization

Start with something simple, and use the youtube_ prefix, not the video_ prefix:
{jrCore_list
module="jrYouTube"
order_by="_item_id numerical_desc"
require_image="youtube_image"
}
SteveX
@ultrajam
05/30/17 12:39:53PM
2,584 posts

uploaded videos not working in Firefox, possibly other browsers as well...


Using Jamroom

Chrome and Safari I see the play bar, nothing else happens whatever I do.

Vivaldi I see the preview and the playbar. Click play and get the same javascript message as on Firefox.
SteveX
@ultrajam
05/30/17 12:20:31PM
2,584 posts

uploaded videos not working in Firefox, possibly other browsers as well...


Using Jamroom

I tried in Firefox. First I got a blocked outdated flash plugin warning, allowed that and reloaded the page.

Only the play bar showed. If I go full screen the video shows. If I click play I get a javascript notice:
Quote: You must be logged in to continue
SteveX
@ultrajam
05/26/17 07:09:40AM
2,584 posts

Is it possible for new applicants to complete a profile form before their account has been approved?


Using Jamroom

You could set the profile to not require approval, then make the signup quota private and hidden.
SteveX
@ultrajam
05/26/17 07:07:14AM
2,584 posts

Issue tracker resolution field strips out code


Using Jamroom

I think this is happening in smarty_function_jrProfile_menu (jrProfile 1.6.1) here because jrComment is required and also excluded:
                // If this module REQUIRES another module, and the other module is excluded, we don't show
                if (isset($_mods[$module]['module_requires']{1})) {
                    $_req = explode(',', $_mods[$module]['module_requires']);
                    if (isset($_req) && is_array($_req)) {
                        foreach ($_req as $rmod) {
                            if (strpos($rmod, ':')) {
                                list($rmod,) = explode(':', $rmod);
                            }
                            $rmod = trim($rmod);
                            if (isset($_exc[$rmod]) || !isset($_mods[$rmod]) || isset($_rt["quota_{$rmod}_allowed"]) && $_rt["quota_{$rmod}_allowed"] != 'on' || isset($_login[$rmod]) && !jrUser_is_logged_in()) {

if ($module == 'jrTracker') { fdebug("removing jrTracker here",$module); }

                                continue 3;
                            }
                        }
                    }
                }

updated by @ultrajam: 05/26/17 07:07:45AM
SteveX
@ultrajam
05/26/17 01:50:49AM
2,584 posts

Issue tracker resolution field strips out code


Using Jamroom

I tried creating a second user and logging into that account on a different browser, integrity checked, dumped caches, etc but still no button.
  37