Forum Activity for @paul

paul
@paul
02/17/22 04:09:14AM
4,326 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

Which eCommerce module(s) are you using?
Maybe send us your admin login and the site domain so that we can take a look?
Thanks
paul
@paul
02/17/22 02:10:48AM
4,326 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

What exactly do you want to do? We can hopefully advise.
Thanks
paul
@paul
01/22/22 06:53:38AM
4,326 posts

Embed Slides to A Group Page


Using Jamroom

Can you post the code you are trying to insert so that we can try it on a test site?

(Use BBCode to do this - Click on the Help button below)

Thanks
paul
@paul
12/19/21 01:03:20AM
4,326 posts

In the Tools for managing Groups, is there any tool for transferring a group from one quota to another?


Using Jamroom

Do you have the Change Owner module installed?
Use that to assign the group to a profile that is in the 'active group' quota.
hth
paul
@paul
12/17/21 09:46:30AM
4,326 posts

Linked Profile


Design and Skin Customization

The problem here is that there are no fields in either the profile or user datastores that links them directly to an 'owner' user. That functionality is done in another table, the 'jr_jrprofile_profile_link' table that is just two columns linking users and profiles by their IDs.
To do what you want, in the template you'd need to call the internal 'jrProfile_get_user_linked_profiles($_user_id)' function that returns an array with linked profile IDs as its keys. These key IDs need to be extracted then 'imploded' into a comma-seperated list that can be used in the jrCore_list search parameter.
So you need template code something like this -

{$linked_profile_ids = implode(',', array_keys(jrProfile_get_user_linked_profiles($_user_id)))}
{jrCore_list module="jrProfile" search="_profile_id IN `$linked_profile_ids`" pagebreak="3" page=$_post.p pager="true"}

Hope this helps
paul
@paul
12/05/21 09:27:34AM
4,326 posts

Image padding - posting profile replies


Using Jamroom

This is fixed in the next release of the Comment module.
paul
@paul
12/04/21 04:09:12AM
4,326 posts

Followers


Using Jamroom

User's can also choose to receive notifications by Private Note. They woud then an indication of new PNs on their profile.
hth
paul
@paul
12/02/21 09:50:21AM
4,326 posts

Image padding - posting profile replies


Using Jamroom

Probably need a bit of CSS adjustment on the image.
Ticket us with the site url, admin login (the one sent a few weeks back doesn't work), the the url of the above screenshot and I'll take a look.
paul
@paul
10/22/21 02:59:24AM
4,326 posts

Mark items visible only to Admin while logged in as Admin


Suggestions

It might be feasible to customise the item_detail templates adding code that first checked that the user is an admin, and if so, then went on to check the $_conf array to show which quotas this view would be available to.
paul
@paul
10/20/21 02:22:25AM
4,326 posts

Mark items visible only to Admin while logged in as Admin


Suggestions

Sorry for the delay responding here.
The easiest way to do this is just to have two different browsers open and be logged in as admin on one of them, and as a user on the other, then just switch between them. I often have several browsers open at the same time (Firefox, Chrome, Safari, Brave etc.) for development that needs multiple users to test things out.
I have seen a Firefox plugin that does allow for different user sessions on different browser tabs so that may be an alternative approach, but its essentially the same thing as multi browsers.
hth
  6