Forum Activity for @michael

michael
@michael
03/19/19 03:37:40PM
7,822 posts

not sure where to increase Group Discuss font size


Using Jamroom

To me your fonts.jpg image does look slightly different, but I cant see the technical point that is different. I overlapped a paragraph from your groups with one from your forum and the text size looks to be the same. (screenshot)

Could you put the same body of text into a group and again into a forum.

anything, eg:
Accusamus sit occaecati sit et pariatur provident. Odit consequatur provident magnam quam. Accusantium adipisci at autem. Et assumenda non ea illum et et eos sint.

Vitae dolorem quia odio provident consequatur. Cum nesciunt similique omnis temporibus praesentium consequatur exercitationem. Consequatur odio excepturi delectus ex ea aut est enim.

same_size.jpg same_size.jpg - 478KB
michael
@michael
03/19/19 03:17:51PM
7,822 posts

Embeded Youtube Video descriptions


Using Jamroom

You can uncheck the "Expanded Media" checkbox in the global settings
ACP -> SITE -> MEDIA URL SCANNER -> GLOBAL SETTINGS

Then instead of a player, the link will only change to the player when clicked.
media_scanner.jpg media_scanner.jpg - 263KB
michael
@michael
03/19/19 03:02:46PM
7,822 posts

System Core Update Breaking Image Uploader


Design and Skin Customization

There was an update recently to jrUpImage to make it work with the new core in the BETA channel.

Forum: "Images Not Found"
https://www.jamroom.net/the-jamroom-network/forum/new_posts/60953/images-not-found

Could be that that is causing the issue. Are you on the beta core or the stable core?

and do you have any customizations to the jrUpImg/templates/jrEmbed_item_list.tpl file?
michael
@michael
03/17/19 07:49:27PM
7,822 posts

BUG - Profile Avatar Looks Terrible


Using Jamroom

Agreed. The email confirms the google sign in is not going away.

The issue here is G+ though no?
michael
@michael
03/17/19 02:34:40PM
7,822 posts

BUG - Profile Avatar Looks Terrible


Using Jamroom

April 2nd is the day Google+ gets shut down. I can understand why they did not choose April 1st.

I got an email telling me. (screenshot)
april_2nd.jpg april_2nd.jpg - 477KB
michael
@michael
03/17/19 02:28:28PM
7,822 posts

Hey Michael


Off Topic

yeah, thanks Curtis. We're in NZ now.

Sad when communication breaks down to the point where the only way to be heard is with a gun.
michael
@michael
03/13/19 08:43:28PM
7,822 posts

New Custom Account Tab


Jamroom Developers

The docblock for jrCore_form_get_saved_data() reads:
Get all posted data that can be saved to the Data Store for a module
 * @param string $module Module that has registered a designer form view
 * @param string $view View to get form fields for
 * @param array $_data $_REQUEST data to parse (default is $_post)
 * @return mixed
 */

It takes $_post and cleans out everything that is not going to be able to be stored in your modules datastore.

So that means everything that does not have the prefix of your modules datastore.

so you need to check the names of your form field line up with what is going into your datastore.

eg: if in your modules schema.php file you have:
    jrCore_db_create_datastore('myCustomModule', 'report');

then your form fields in your 'settings' form would need to look like this:
    // report_id
    $_tmp = array(
        'name'  => 'report_id',
        'type'  => 'hidden',
        'value' => $_report['_item_id']
    );
    jrCore_form_field_create($_tmp);


    // Report body
    $_tmp = array(
        'name'     => 'report_body',
        'label'    => 'Report',
        'help'     => 'Enter any report body into this area',
        'type'     => 'textarea',
        'validate' => 'printable',
        'required' => true
    );
    jrCore_form_field_create($_tmp);
.....

The 'name' lines up with what datastore value the input value will be stored on.
michael
@michael
03/13/19 05:29:18PM
7,822 posts

Images Not Found!!


Using Jamroom

run the INTEGRITY CHECK again with all the check boxes checked. log out, then back in again see if its still happening.

If it is, send me your login details to support at jamroom dot net and i'll see if i can see whats up.
michael
@michael
03/13/19 05:18:46PM
7,822 posts

Images Not Found!!


Using Jamroom

Where are you seeing "No image file can be found" ? is that on the upload form or where you're expecting to see it on the site after upload.

Is it a gallery image, or a different upload method?
michael
@michael
03/13/19 04:52:51PM
7,822 posts

New Custom Account Tab


Jamroom Developers

Also if you're trying to use the jrCore_db_update_item() function then make sure you're only doing so AFTER you've used the jrCore_db_create_item() function.

And only pass in arrays that begin with the name of the datastore. ie
'profile_????'

if you're trying to put it into the profile datastore.
  92