Forum Activity for @michael

michael
@michael
12/11/21 03:23:09PM
7,823 posts

Profile menu error


Installation and Configuration

Did you send the wrong URL?

That error means "You passed in no profile_quota_id into the jrProfile_menu function in one of your templates" The jrProfile_menu requires a number, that number should be the profile_quota_id value of the person that will be looking at the menu.

If you want it for the logged in user then you probably want $_user.profile_quota_id
url.jpg url.jpg - 1MB
michael
@michael
12/07/21 06:10:03PM
7,823 posts

Premium Features


Installation and Configuration

Did you purchase Premium?

Premium is available as a stand alone purchase or for anyone using Jamroom Hosting. Send an email to support at jamroom dot net if you've purchased premium along with some way to identify the purchase, I can see its not attached to your account.
michael
@michael
12/06/21 07:40:09PM
7,823 posts

the click "more" of a Blog in the Timeline is not working


Design and Skin Customization

This is the "showMore()" function that should be in the skins .js file and not commented out.


function showMore(div) {
    $('#truncated_' + div).toggle();
    $('#full_' + div).toggle();
}

After that there's an issue with the wrong ID being passed in to that function too. Its a bug, we'll get it fixed. Thanks.
michael
@michael
12/02/21 03:51:34PM
7,823 posts

album artwork not posting on FB


Using Jamroom

We've added a new template to the jrAudio module so albums have og:tags it will be included in the next release 3.0.5 once its had a chance to be tested.

From there you can customize the jrAudio/templates/item_list_meta.tpl file to change it if it needs changing.
michael
@michael
12/02/21 02:24:03PM
7,823 posts

Hook for server-based final validation of new comment


Jamroom Developers

sure, 'run_view_function' is a good place to check it. Before the _save() function has even started. Best spot.
michael
@michael
12/02/21 02:19:48PM
7,823 posts

Hook for server-based final validation of new comment


Jamroom Developers

ah sorry, those are the last points before storing the comment. I need to read better. I'll look at returning validation.
michael
@michael
12/02/21 02:17:21PM
7,823 posts

Hook for server-based final validation of new comment


Jamroom Developers

The normal one you'd use is
'db_create_item'

If you were in a REAL bind after that there is
$func = jrCore_get_active_datastore_function($module, 'db_create_item');

Where you could choose not to use jamrooms datatore function and instead roll your own by copying the
_jrCore_db_create_item()
as a starting point.

--
Yeah those are the last.

Another option to try is to change the priority of the module in its _meta() function, eg the jrSmiley module for some reason wants to be called later in the flow so sets its weight to 80

function jrSmiley_meta(){
    return array(
        'name'        => 'Smiley Support',
        'url'         => 'smiley',
        'version'     => '1.4.2',
        'developer'   => 'The Jamroom Network, ©' . strftime('%Y'),
        'description' => 'Replace smiley string with a graphic in text fields',
        'doc_url'     => 'https://www.jamroom.net/the-jamroom-network/documentation/modules/2915/smiley-support',
        'category'    => 'site',
        'priority'    => 80,
        'license'     => 'mpl',
        'requires'    => 'jrCore:6.5.0'
    );
}

Setting your weight to even higher could put you later than whatever you want to avoid.
michael
@michael
11/27/21 04:42:36PM
7,823 posts

album artwork not posting on FB


Using Jamroom

The page has no
og:image
tags in it, that's what facebook uses to determine which image to show. Add og:image tag via the jrMeta module to get the one you want to show.
michael
@michael
11/25/21 03:00:56PM
7,823 posts

Skins That Have The Best Of Both Worlds


Design and Skin Customization

The thing with the jamroom skins is that their not just a theme set of colors but rather the means to allow the developer to build whatever they want.

I hear what you're saying though, cherry picking bits and pieces to build something new would be cool. Being able to use any part of any skin in any other skin would be a good addition.

To meet that request a standardized set of CSS rules would need to be implemented and enforced. That's probably doable, it would mean sacrificing a bit of flexibility so each skin would become more like the others. Thanks for the idea.
michael
@michael
11/24/21 08:32:33PM
7,823 posts

Skins That Have The Best Of Both Worlds


Design and Skin Customization

The skins were always intended as a starting point/ showcase of features rather than an end product. There's a CLONE SKIN button in the developer tools module:

Docs: Creating your own Skin ( Clone from an Existing Skin )
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin

Clone one of those skins to make it your own then grab the code from the other skins and make it into your own skin.

If you'd rather have someone do it for you send us a support ticket at support at jamroom dot net with a title like "custom skin work project" or something like that and a link to this thread.

--edit--
Judging by your footer links the skin dev looks like you can handle it yourself with a few pointers. One of your footer links seems weird though, this one: https://www.imixyourmusic.com It goes to a chinese site "Fuma Heavy machinery". You might want to check that domain is setup correctly.
hmmmm.png hmmmm.png - 1.5MB

updated by @michael: 11/24/21 08:37:48PM
  39