Forum Activity for @michael

michael
@michael
02/28/17 12:46:06PM
7,826 posts

Cannot export media in gedcom exporter


Genosis

Send it to me, I'm requesting it. You're email does get through. :)

I don't want you putting private login details into a public forum.

I don't know what docker is, but i can see its website and do have a mac, so that will work.

Thanks.
michael
@michael
02/28/17 12:42:17PM
7,826 posts

Custom Video Players


Jamroom Developers

There is the 'Playlist Ads' module that allows you to inject adverts into audio playlists.
https://www.jamroom.net/the-jamroom-network/networkmarket/64/playlist-ads

The limitation with Playlists is the player, not the Playlist module. It could be customized to build a list of videos, then insert adverts into them.

Or you could customize the video player.

Each skin has an include.php file in it. In that it specifies the player to use, eg in the jrSoloPro skin's _init() function
    // default players
    jrCore_register_module_feature('jrCore', 'media_player_skin', 'jrSoloPro', 'jrVideo', 'jrSoloPro_video_player');

That will then use the
/skins/jrSoloPro/jrSoloPro_video_player.tpl

for the videos. You can do the same and setup whatever player you like with it. We currently use the jplayer because its license ( MIT ) is compatible with our license ( MPL ).

On your site you don't need to worry about licenses because you're not distributing it so you can use whatever you like.
michael
@michael
02/28/17 12:35:08PM
7,826 posts

[BUG] Site / Page Builder Broken (jrElastic2?)


Design and Skin Customization

Don't be. Get some traffic first, get it to a point where adsense can see the topic of your site so know what type of ads to send you and try again.
michael
@michael
02/28/17 12:33:22PM
7,826 posts

No Ning/Ningja Downloads?


Ning To Jamroom

@isleander still dont know what the problems you're having are, just that you're having problems. If you could list the problems you're having that would help get them solved.

It looks like you have a custom skin and its header is not leaving enough space for the page body.
michael
@michael
02/28/17 12:30:42PM
7,826 posts

No Ning/Ningja Downloads?


Ning To Jamroom

Here's how it works now:
* Ninja is a skin created for users coming from Ning.
* Ning users are generally non-technical and don't want to look at code
* Site Builder is a system to allow non-technical users to construct pages without looking at code.

PREVIOUSLY:
The admin users of the Ninja skin, if they wanted to change the top page, had to do that in code OR re-build the entire page in Site Builder if they wanted to use site builder. If an admin user asked "How do I move that Latest Activity box to the right". The answer was "You have to rebuild that entire page in site builder in order to be able to drag-n-drop it, or you can do it in code"

CURRENTLY
The Ninja pages are created in Site Builder by default, so the reverse is true. Now you can just activate Site Builder and drag the Latest Activity to the right. If you want to do it in code, then you'd need to build the templates.

This pattern seams to be correct against the premise: Ning users are non-technical and don't want to look at code.

@strumelia, you already have your index.tpl built in code so it doesn't effect you. you dont need to activate Site Builder.

@isleander Site Builder is for building the site. You can still view the site from your iPad.
michael
@michael
02/28/17 01:44:16AM
7,826 posts

[BUG] Site / Page Builder Broken (jrElastic2?)


Design and Skin Customization

Looks like this might be it, you're missing a closing /script tag (screenshot)
this:
<script type="text/javascript">
    $(document).ready(function() {
        $('.index_form #user_email_or_name').prop('placeholder', 'user name or email');
        $('.index_form #user_password').prop('placeholder', 'password');
        $('.user_remember_element_right').append('remember me');
        });
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
should probably be:
<script type="text/javascript">
    $(document).ready(function() {
        $('.index_form #user_email_or_name').prop('placeholder', 'user name or email');
        $('.index_form #user_password').prop('placeholder', 'password');
        $('.user_remember_element_right').append('remember me');
        });
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>

missing_closing.jpg missing_closing.jpg - 62KB

updated by @michael: 02/28/17 01:44:30AM
michael
@michael
02/28/17 01:40:51AM
7,826 posts

[BUG] Site / Page Builder Broken (jrElastic2?)


Design and Skin Customization

Anything in the console? javascript errors maybe?

Send us you admin login details to support at jamroom dot net and we can take a look. Include the link to this thread.

--
Can see one thing that may be related, on that page you have this error in the console:
SyntaxError: expected expression, got '<'
https://social.vixiv.net/SoulMechanic
Line 243
Added any scripts lately? (screenshot). Check they are wrapped in {literal}{/literal}

Docs: "{literal}{/literal}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/3011/literal-literal
javascript_error.jpg javascript_error.jpg - 49KB
michael
@michael
02/28/17 01:12:22AM
7,826 posts

Amazon Linux: install gives error: jrCore_checktype: unable to load checktype plugins


Installation and Configuration

@vixivtech, you Rock!!! I couldn't come up with anything other than "Its something server related, check mod_rewrite"

soo glad you helped out on this one. Thanks. :)
michael
@michael
02/27/17 04:04:25PM
7,826 posts

How To Make Page Open On Specific Tab


Using Jamroom

We've got a solution in place for this in the next version. We're gearing up for the next big increment release of core to 6.1 so will hold off on releasing the Site Builder module until that comes out so that i can be certain its going to work as expected.

The way it will function is when you click a tab it will add the full url to that tab to the address bar:
yoursite.com
click on tab4 and the url will change to
yoursite.com#tab4

Then if you visit the site with that URL the tab will be selected.
  257