Forum Activity for @paul

paul
@paul
03/22/19 10:59:26AM
4,335 posts

Can Vimeos play in a post ?


Using Jamroom

Actually I was wrong on this (sorry).
Embedded Vimeo videos are supported and are working fine for me.

How are you trying to do this, and in what text field?

updated by @paul: 03/22/19 11:00:23AM
paul
@paul
03/21/19 02:19:24PM
4,335 posts

Hide profile page but show content in group?


Off Topic

Hi - You're on the right track :-)

What I would do is use the Form Designer on the Audio/Video/ create and update forms to add in the various checkboxes and set them to show only to admins and the profile in question.
You can then modify the {jrCore_list...} calls in the various module templates to exclude items with these boxes set (if not the profile owner or admin). You will also need to do the same in the skin template where they are listing said items.
Hope that helps.
paul
@paul
03/21/19 02:11:48AM
4,335 posts

Can Vimeos play in a post ?


Using Jamroom

This isn't supported in the Vimeo module. I'm not sure why. It might be a licencing thing, or lack of a suitable player, or that it was just overlooked. I'll see if I can find out.
paul
@paul
03/19/19 03:22:23PM
4,335 posts

not sure where to increase Group Discuss font size


Using Jamroom

Your skin still Ninja based? If so -

ACP=>Skins=>'Your Skin'=>Style

Select the text.css file and edit the 'normal' CSS setting for a bigger font.

hth
paul
@paul
03/18/19 01:44:55AM
4,335 posts

BUG - Profile Avatar Looks Terrible


Using Jamroom

Quote:
Possible Solution: Update the OneAll module code :
- Check the resolution of image pulled from OneAll
- Does it meet minimum profile avatar requirement of 512x512 ?
- If Yes - then use the OneAll image for user profile image - it should look great.
- If No - then do not use the OneAll image, just use default profile image.

You could implement that within your template -
{if $profile_image_height >=512 && $profile_image_width >= 512}
    // Show uploaded image
{else}
    // Show default image
{/if}

hth
paul
@paul
03/18/19 01:33:43AM
4,335 posts

How to Make a Module's Meta Data Available to a Template


Jamroom Developers

Just run the function from the template -
{$_Blog_meta = jrBlog_meta()}
$_Blog_meta would then be an array of all the meta data, so -
{if $_Blog_meta.ampify == 'whatever'}
    // Do stuff
{/if}

hth
paul
@paul
03/16/19 12:48:56PM
4,335 posts

Jamroom live broudcast


Using Jamroom

Not sure what part Jamroom could play in a live broadcast. There are plenty of third party providers for this that your PC would interface directly with.
How do you see a Jamroom module working to do what you want?
Thank.
paul
@paul
03/14/19 11:51:59AM
4,335 posts

Banned Items - partial profile names


Using Jamroom

Get the latest module Banned module from the Marketplace. It should handle partial searches ok now.
Note that now when creating banned words, emails etc. there's a checkbox to force a partial search for the item. If not checked, the search will still be on word boundaries, as it worked before.
paul
@paul
03/13/19 01:11:18PM
4,335 posts

Banned Items - partial profile names


Using Jamroom

I'll check this out. It might be a bug.
paul
@paul
03/13/19 04:48:10AM
4,335 posts

Banned Items - partial profile names


Using Jamroom

This is correct. Only whole words are tested for. If someone tried to signup as 'Ruips' it would be rejected.
  67