Forum Activity for @softdesigns

SoftDesigns
@softdesigns
09/15/18 08:04:24AM
242 posts

Custom Module Standard User


Jamroom Developers

paul:
In that case, maybe show the link as a (dropdown) User Menu item?
You can just create one using ACP=>Core=>System Core=>Tools=>User Menu Editor or you could add it to the module's init function in the include.php file. Checkout one of the modules that does this (eg. jrFollower include.php line 65ish) to see how its done.
hth

    // Skin menu link to 'following'
    $_tmp = array(
        'group' => 'user',
        'label' => 37, // 'Profiles I Follow'
        'url'   => 'following'
    );
    jrCore_register_module_feature('jrCore', 'skin_menu_item', 'jrFollower', 'following', $_tmp);

We found some code from jrFollower above, maybe this code is what you suggest to add menu link?
--
We are hoping to keep all functions on the Profile, using profile buttons, since the menus links are more difficult to find especially on the mobile.
--
Is there any way to have "read only" (no stored data) custom profile module tabs, show for all "Standard Users"
SoftDesigns
@softdesigns
09/14/18 10:31:47PM
242 posts

Custom Module Standard User


Jamroom Developers

michael:
If you've yet to create anything for that module, nothing will show.

Yes, I see your point with standard JR Modules like blog, audio. Since this is a custom coded JR Module, for testing, it does not collect or store any user data in JR. Some custom modules may not store JR data per say. So there would be no way for JR to check for data, to show buttons.

Any way we can just set to show a module to all "Standard" users? (even if no JR data will be created, or user will not store any JR data for this module?)
SoftDesigns
@softdesigns
09/14/18 07:05:15PM
242 posts

Custom Module Standard User


Jamroom Developers

Hi - Now testing a custom profile module, and all is going well, except one small security setting:
--
When we test as "Standard" user, we do not see the module tab on profile. However, when we test as "Profile Admin" the custom module tab shows on profile.
--
How to adjust the custom module security, so all "Standard" users, can see our new custom module tab on the relevant profile?
updated by @softdesigns: 12/16/18 01:51:30AM
SoftDesigns
@softdesigns
09/13/18 05:41:27PM
242 posts

Followers Notification Trigger


Using Jamroom

@michael - Ahh thanks, actually we did not enable timeline module, so maybe that is why we did not see follower updates.
--
Per your advice, we will enable the Timeline module, as it seems Followers and Timeline work together...
--
Great Support :)
SoftDesigns
@softdesigns
09/13/18 02:48:44PM
242 posts

Followers Notification Trigger


Using Jamroom

If I follow a profile, do I get a notification if that profiles uploads a new image?
--
What actions trigger email notifications for followers?
--
What actions cause followers to be notified?
updated by @softdesigns: 12/15/18 01:40:25AM
SoftDesigns
@softdesigns
09/12/18 07:22:29AM
242 posts

Audio Cover Image Size


Using Jamroom

@brian - Probably something we are missing, we realize sizing is tricky.
Since this Audio Cover test is on a private profile, we will submit a private support ticket...
--
Great Support - Thanks...
SoftDesigns
@softdesigns
09/12/18 06:38:05AM
242 posts

Audio Cover Image Size


Using Jamroom

Thanks for the info above, that may be useful in code.
However, this image size bug is not related to custom code, this is simply using JR out of the box.
--
This is simply a JR album cover, and I do not see any way we can manipulate this, since this is built into JR.
--
RE: Album Cover Image
Every time we upload an album cover image, it gets "exploded" (larger) and gets cut off.
--
Simple Question:
There must be a simple, recommended image size dimensions to use for album cover ?
What pixel dimensions should we use for an album cover image?
SoftDesigns
@softdesigns
09/11/18 09:24:29PM
242 posts

Audio Cover Image Size


Using Jamroom

RE: Audio Cover Image - After reading above, tried using a "square image" - 350 x 350px
This should work everywhere since it is square.
It looks good in all "lists", but when I click on the album itself (album view) - the image is exploded and gets cut off...
--
I see no way to crop, or fix this image, because it is already "square" 350 x 350px - jpeg file.
--
How to fix this image to look correct without cutting off in "Full Album View" ?
What pixel dimensions should we use for album covers?
updated by @softdesigns: 09/11/18 09:41:45PM
SoftDesigns
@softdesigns
09/10/18 09:29:17PM
242 posts

Mobile vs Desktop Image Code


Design and Skin Customization

Hi - Hoping to find the Smarty Template Code to resize an image differently for Mobile or Desktop.
It seems before, I did see some Smarty Code to achieve this, but cannot remember which template.
--
Need Smarty Code Logic similar to this:
{if mobile}
image.size = x
{else if desktop}
image.size = y
{endif}
--
Please Advise...
updated by @softdesigns: 12/25/18 10:45:08PM
SoftDesigns
@softdesigns
09/09/18 06:47:15PM
242 posts

Followers Module Quota Config


Using Jamroom

@paul - Using Ninja Skin...
  5