Forum Activity for @michael

michael
@michael
07/01/15 12:35:42AM
7,832 posts

play icon issues on profiles


Ning To Jamroom

Observations:
* The buttons that arn't showing properly come from soundcloud module while the others come from jrAudio.
* changing the col9 to col8 and giving the players col2 resolves the issue.

Not sure of the exact issue yet.
michael
@michael
07/01/15 12:13:13AM
7,832 posts

profile domains sni only work in ff?


Design and Skin Customization

Should be working for all browsers. Got a URL that should be working so I can check it out?

There is this option too under the GLOBAL CONF settings:
Quote: If this option is checked, the ServerAlias config for each active custom profile domain will be written to the following file:

/your-site.com/public_html/data/media/0/0/apache_server_alias_include.conf

Which can then be included in your Apache config file for this domain.
Default: on

Template Variable: {$_conf.jrCustomDomain_write_config}

So you can do it at the apache level with that file that's created. Bit of over-kill for right now, but its an option if we cant get to the bottom of why its not doing what it should.
updated by @michael: 07/01/15 12:13:47AM
michael
@michael
07/01/15 12:02:42AM
7,832 posts

Disappearing Edit and Trash button glitch


Using Jamroom

Its not the source code. If I save the code where it is visible, then load that, the issue is not there. Guessing its some javascript somewhere that targeting that block by mistake. Tricky issue.
michael
@michael
06/30/15 11:59:37PM
7,832 posts

gallery view sizing issue


Ning To Jamroom

On your URL here:
https://www.dreadlockssite.com/sarahbosley/gallery/dreadlocks/all

They all look correct to me.
2 // shows 2 images
3 // shows 3 images
4 // shows 4 images
6 // shows 6 images
8 // shows 8 images

Is that not what you see? What browser?
screenshot_firefox_3.jpg screenshot_firefox_3.jpg - 204KB

updated by @michael: 07/01/15 12:01:11AM
michael
@michael
06/30/15 08:53:03PM
7,832 posts

Why is (invalid item ) showing ?


Using Jamroom

The share this module only works for modules with an item id:

https://www.jamroom.net/the-jamroom-network/documentation/modules/2598/sharethis

If you want to add it to other pages, you'll need to get the code from share this site.

Or look how others have accomplished the same thing in the forms here. search "sharethis"

https://www.jamroom.net/the-jamroom-network/forum/new_posts/29819/sharethis-on-front-page/search_string=sharethis
michael
@michael
06/30/15 02:57:50AM
7,832 posts

Subrcriptions Quota Artist


Using Jamroom

Don't think anyone on the team speaks spanish sorry.

Sale of subscriptions will need to go through foxycart. That is the only option to sell subscriptions.

if your just wanting options to sign up to different quotas, that does not require foxycart.
michael
@michael
06/30/15 02:55:09AM
7,832 posts

gallery view sizing issue


Ning To Jamroom

probably some padding on some element causing % plus padding to exceed 100% so wraps. Or a border thickness.
michael
@michael
06/30/15 02:32:07AM
7,832 posts

Disappearing Edit and Trash button glitch


Using Jamroom

I've managed to see the issue happening, but its a weird one. After refreshing the page, the issue goes away.

The source code for the page where the buttons appear and the page where the buttons don't appear are exactly identical.

still a mystery, need more time. Thanks John for the detective work, and Strumelia for the video.

I know what the issue is now.
updated by @michael: 06/30/15 02:38:55AM
michael
@michael
06/30/15 01:53:06AM
7,832 posts

Comments Module Settings


Design and Skin Customization

:) Nice one. Keep that guy in ukraines number :) Send him to the open jobs board when you've finished with him:

https://www.jamroom.net/job/open
michael
@michael
06/30/15 01:49:47AM
7,832 posts

auto integrity/optimize on daily trigger


Suggestions

What would be a better option is to add your own module and add your own 'daily_maintenance' listener then just do whatever you want to do without needing to run the integrity check.

The whole module only needs an include.php file, here it is here:
<?php
/**
 * @copyright You at wherever
 */

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

/**
 * meta
 */
function xxSomething_meta(){
    $_tmp = array(
        'name'        => 'Something',
        'url'         => 'something',
        'version'     => '1.0.0',
        'developer'   => 'Nobody, &copy;' . strftime('%Y'),
        'description' => 'A module created to do somthing',
        'license'     => 'mpl',
        'category'    => 'site'
    );
    return $_tmp;
}

/**
 * init
 */
function xxSomething_init(){
    jrCore_register_event_listener('jrCore', 'daily_maintenance', 'xxSomething_daily_maintenance_listener');
    return true;
}


/**
 * xxSomething_daily_maintenance_listener
 * @param $_data array incoming data array from jrCore_save_media_file()
 * @param $_user array current user info
 * @param $_conf array Global config
 * @param $_args array additional info about the module
 * @param $event string Event Trigger name
 * @return array
 */
function xxSomething_daily_maintenance_listener($_data, $_user, $_conf, $_args, $event)
{ // do whatever you want to here...... return $_data; }

That would fire ever day at daily maintenance time.
  518