Forum Activity for @michael

michael
@michael
02/19/17 07:09:13PM
7,826 posts

Page Creator Not Working


Installation and Configuration

you can create a new page from here:

http://yoursite.com/page/admin/tools

Click the CREATE NEW PAGE button.

Give it a page title, say: "Terms and Conditions"

If you select "Page is visible on profile" the location of the page will be on your profile eg:
http://yoursite.com/admin/page/2/terms-and-conditions

However if you select "Page is visible on Main Site" the location of the page will not be on a profile, eg:
http://yoursite.com/page/2/terms-and-conditions

In this case if you want to edit it you would go to
ACP -> MODULES -> ADMIN -> PAGE CREATOR -> TOOLS -> Browse Existing Pages -> MODIFY

It sounds like you're wanting the page so you can use it in the TERMS OF SERVICE module:

Docs: "Quota Terms of Service"
https://www.jamroom.net/the-jamroom-network/documentation/modules/2952/quota-terms-of-service

Now in the QUOTA CONFIG for the Terms of Service module you can select the page you created for profiles in that quota.

The "Terms and Conditions" page you created should be showing in the drop down menu.
michael
@michael
02/19/17 06:56:34PM
7,826 posts

Event lists all show a calendar marker of 31?


Using Jamroom

It depends on where it lives at.

If you're uploading a new image to a version of a jamroom skin say
/skins/jrElastic-version-1.1.2/img/SOME-IMAGE.jpg

and then jrElastic-version-1.1.3 comes out, it will be found at
/skins/jrElastic-version-1.1.3/img/SOME-IMAGE.jpg

The old image will still exist at the 1.1.2 location, but the new skin will use its version so it would revert.

However if you're thinking about a location like
/data/media/0/0/?????.jpg

Then those files have been uploaded to the system and would stay there as long as they are not re-uploaded over.

But a location like
/data/cache/ (anywhere)

would only last until the cache was cleared.
michael
@michael
02/19/17 06:51:49PM
7,826 posts

Change Style Of Celebrity Skin Tag Cloud


Design and Skin Customization

Where is it? It probably has different CSS rules effecting it.
michael
@michael
02/19/17 12:28:19PM
7,826 posts

We're buildng an FAQ for jamroom.net. Which Questions should be on it?


Using Jamroom

We're building an FAQ for jamroom.net and would like you're feedback on which questions should be on it.

Its visible in the correct order here:
https://www.jamroom.net/faq

The goal is to help new users to jamroom get familiar with the system.

Help please. What questions were some of the ones that you'd wished you'd known from the beginning?

Thanks.
updated by @michael: 05/23/17 12:26:00AM
michael
@michael
02/19/17 11:55:16AM
7,826 posts

Loading External JS via Modules


Jamroom Developers

A sample include.php file for a module called xxExternajs
<?php
/**
 * @copyright 2017 Talldude Networks, LLC.
 */

// make sure we are not being called directly
defined('APP_DIR') or exit();

/**
 * meta
 */
function xxExternaljs_meta(){
    $_tmp = array(
        'name'        => 'External Js',
        'url'         => 'externaljs',
        'version'     => '1.0.0',
        'developer'   => 'The Jamroom Network, &copy;' . strftime('%Y'),
        'description' => 'include some javascript files',
        'category'    => 'custom',
        'license'     => 'mpl'
    );
    return $_tmp;
}

/**
 * init
 */
function xxExternaljs_init(){
    jrCore_register_module_feature('jrCore', 'javascript', 'xxExternaljs', 'somefile.js');  // includes /modules/xxExternaljs/js/somefile.js
    jrCore_register_module_feature('jrCore', 'javascript', 'xxExternaljs', '//cdn.com/jqwidgets/jqxcore.js'); // includes http?://cdn.com/jqwidgets/jqxcore.js
    return true;
}
michael
@michael
02/18/17 09:48:17PM
7,826 posts

Facebook Question


Using Jamroom

if you can locate one that is added to facebook via a page that has og:tags in the meta tag of the page where it came from with a link to the player that shows on facebook, that would be perfect.

I can look at that to see how its done and replicate it.
michael
@michael
02/18/17 09:00:29PM
7,826 posts

Facebook Question


Using Jamroom

Youtube may get special treatment.

Google products:
* chrome
* youtube

Got any to a link not owned by google?
michael
@michael
02/18/17 08:49:32PM
7,826 posts

Facebook Question


Using Jamroom

could you show me an example of one of the ones that works well please?
michael
@michael
02/18/17 08:29:01PM
7,826 posts

New Module - (Electronic Press Kit) - idea


Suggestions

Have you got an example EPK in PDF form I could look at? Something you think is a good example of an EPK?
michael
@michael
02/18/17 08:25:37PM
7,826 posts

Facebook Question


Using Jamroom

Yeah, its facebook being annoying.

Look here:
https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2Fpermalink.php%3Fstory_fbid%3D1400693786647943%26id%3D157723244278343&width=500

That is the post all by itself. click on the PLAY button there and the placeholder gets replaced with the player and the play begins immediately.....HOLD ON.

Actually I think the culprit in this case is chrome.

When I view the post in firefox, the click of the PLAY button that swaps out the image for the player does begin immediately.

In chrome, the flow is click the image, the player appears, but its paused.

Chrome's fault.
  264