Forum Activity for @michael

michael
@michael
12/12/21 05:19:34PM
7,816 posts

Why?


Using Jamroom

If the media url scanner is active in the system then make sure its turned on for all quotas at
ACP -> SYSTEM -> SYSTEM CORE -> QUOTA CONFIG

I would expect those URLs to be converted into something more interesting.
checked.jpg checked.jpg - 864KB
michael
@michael
12/11/21 03:27:42PM
7,816 posts

Foxycart In active


Installation and Configuration

Make sure you're not using the jrFoxyCart module, thats depreciated. Use the jrPayment module instead, from there you can choose to use Foxycart as a plugin or Stripe or another payment system.
michael
@michael
12/11/21 03:26:30PM
7,816 posts

Why?


Using Jamroom

Its your timeline you can disable them OR you can turn on the "Media URL Scanner" module:
https://www.jamroom.net/the-jamroom-network/networkmarket/131/media-url-scanner

and have those links converted into the actual youtube video that will play and the actual, not sure what that is, looks like maybe an audio file or video file uploaded to your site perhaps.

If you want to disable them or not add them to the timeline one way is to uncheck the SHARE TO TIMELINE checkbox when the item is created, there are other ways too depending on how you want to proceed.
michael
@michael
12/11/21 03:23:09PM
7,816 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,816 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,816 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,816 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,816 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,816 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,816 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.
  38