Forum Activity for @paul

paul
@paul
09/18/18 10:19:33AM
4,335 posts

add to newsfeed/timeline new join users


Using Jamroom

Elastic2 already has a 'New Members' section. Is that what you are referring to?
If so, and your question really is "Why are my new members not showing here?", that section will only show members who have uploaded a profile image. To change that edit the skin index_core.tpl template and change line 26 from

{jrCore_list module="jrProfile" order_by="_item_id desc" limit=$limit require_image="profile_image" template="index_core_profile_list.tpl"}

to

{jrCore_list module="jrProfile" order_by="_item_id desc" limit=$limit template="index_core_profile_list.tpl"}

hth
paul
@paul
09/18/18 10:00:58AM
4,335 posts

add to newsfeed/timeline new join users


Using Jamroom

What skin are you using? Is 'newsfeed' a section on the homepage?
Same idea - The section is probably showing a list of admin blogs so will have a similar jrCore_list call, so just replace that one with the jrAction one I suggested above.
paul
@paul
09/18/18 09:56:14AM
4,335 posts

Means to exclude artists/songs from charts for X number of days?


Installation and Configuration

What I would do is clone the quota that your artists are in, then move winner profiles to that quota.
Then, in the jrCore_list call that lists the charts, add a search parameter to exclude profiles in the 'winners' quota.
Ie. If the winners quota has ID 10 (say),

{jrCore_list module="jrAudio" search="profile_quota_id != 10" chart_field=" . . . }

hth
paul
@paul
09/18/18 09:47:01AM
4,335 posts

add to newsfeed/timeline new join users


Using Jamroom

ACP=>Users=>Users=>Quota Config=>Add to Timeline

Check the box for all the profile quotas you want this to happen with, then in your skin's index.tpl template, add a timeline list call where you want your new signups to show -

{jrCore_list module="jrAction" search="action_mode = signup" order_by="_created DESC" limit=10}

hth
paul
@paul
09/18/18 07:46:24AM
4,335 posts

Embedding images in a comment on smart phone


Using Jamroom

By default, on mobile devices, Jamroom doesn't show the full editor and reverts to the simpler textarea form field. The editor causes too many issues on a smart phone - it goes offscreen and becomes difficult to use.
It sounds like this is what you are seeing.
hth
paul
@paul
09/18/18 07:41:18AM
4,335 posts

Follow Me Skin Pages Not Found


Installation and Configuration

I suspect that you have created all the menu items with SiteBuilder?
If so, you'll need to create them again for the FollowMe skin.
hth
paul
@paul
09/17/18 08:18:03AM
4,335 posts

Following Error


Using Jamroom

ACP=>Core=>Marketplace=>System Updates
hth
paul
@paul
09/17/18 07:46:08AM
4,335 posts

Following Error


Using Jamroom

Get the latest Follower module from the Marketplace. This bug has been fixed in it.
paul
@paul
09/16/18 02:27:38PM
4,335 posts

Subscription Profile Access


Using Jamroom

All I was thinking was to put the profiles being subscribed to in a quota with ID=x, build a Not Authorised page (with SiteBuilder, say), then if ID y is the subscription quota, add this code to the top of the profile_header template -

{if $profile_quota_id == 'x' && (!jrUser_is_logged_in() || $_user.profile_quota_id != 'y')}
    {jrCore_location("`$jamroom_url`/not_authorised")}
{/if}
  86