Forum Activity for @paul

paul
@paul
02/18/22 08:45:21AM
4,331 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

What quota is @teuser in? If not in Silver he will not see it.
Or it might be because the Payment module isn't properly configured.
Send us admin and teuser logins and we'll take a look.
paul
@paul
02/18/22 01:50:28AM
4,331 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

On the Subscriptions page that is in the user account views is a 'Buy It Now' button to upgrade from Silver to Gold. How you get people there is really down to you and how you market the site. Maybe a 'splash' on the site's homepage, or a 'hover-over' or link next to dummy audio item download button that is shown only to Silver users.
Jamroom skins cannot do this 'out of the box' as everyone's marketing ideas are different. This is why skins are based on editable templates so that users can customise their sites for their own functionality.
hth
paul
@paul
02/17/22 01:15:13PM
4,331 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

[quote]"Set up two quotas, one for signups (Silver) and one to subscribe to (Gold)."
i did but guest will see the two options Silver and Gold when try to register and if they chose Gold they will have Gold Membership permissions.. so? or what...[/quote]

Go to your User module's Quota settings and uncheck the 'Allow Signups' option for the 'Gold' quota. It now will not show on the registration page.

[quote]"You will need to add a checkbox field to the Audio Create and Update forms so that if checked, visitors are allowed to stream the audio tracks. Use the Form Designer to do this. This is now where a bit of template work is required to check this field setting for each song so as to decide whether to show the 'Play' button or not."
okay i know Desinger Form but wat will include this filed i dont get...[/quota]

If you create the field 'audio_allow_streaming', say, the value of that field for each audio item (yes/no) will be available to the template code along with all other audio item parameters. The template code can then test thr value and output the appropriate html so as to show the stream button.

[quote]and how i will show my Subscription plan in site to users[/quote]

If you set up a subscription plan. it will automatically show to users in their user account pages.
paul
@paul
02/17/22 08:34:50AM
4,331 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

All of the above is doable by configuring modules' quota settings and possibly a bit of template work.
You will need the Payment, Subscription and Audio modules.
Configue the Payment module with your prefered gateway and credentials.
Set up two quotas, one for signups (Silver) and one to subscribe to (Gold).
Create and configure the Subscription to the Gold quota.
Configure the Audio module's quota settings to allow the required features for each quota.
You will need to add a checkbox field to the Audio Create and Update forms so that if checked, visitors are allowed to stream the audio tracks. Use the Form Designer to do this. This is now where a bit of template work is required to check this field setting for each song so as to decide whether to show the 'Play' button or not.
That should get your site up and running to do the above.
hth
paul
@paul
02/17/22 06:03:26AM
4,331 posts

is there any manual about for MP3 sell and paid subscription


Installation and Configuration

Disable the 'Paypal Buy It Now' module and just configure and use the 'Payment Support' module. They are not designed to be used together and by doing so, can cause issues. Configure the 'Payment Support' module to use PayPal, correctly filling in all the required fields. The 'Payment Support' module wil then also support the Subscriptions module if needed.
hth
paul
@paul
02/17/22 04:09:14AM
4,331 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,331 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,331 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,331 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,331 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
  6