Some features

resif
@resif
6 years ago
187 posts
can i add read more link for blog article
and if i want to sell some services on user profile or shop.. which solutions is my need...
and i want to separate profiles like basic and guru on register page and different rights
and DM messaging is possible?

updated by @resif: 12/13/18 08:19:57AM
paul
@paul
6 years ago
4,325 posts
Quote: can i show Bio like twitter
Not sure what you mean. Can you elaborate?

Quote: and if i want to sell some services on user profile or shop.. which solutions is my need...
You'll need the Payment Module and the Service Shop module -

https://www.jamroom.net/the-jamroom-network/networkmarket/470/payment-support
https://www.jamroom.net/the-jamroom-network/networkmarket/244/service-shop

hth


--
Paul Asher - JR Developer and System Import Specialist
resif
@resif
6 years ago
187 posts
Sorry for bio.. its ok
resif
@resif
6 years ago
187 posts
and how can i do different member profiles with different rights
paul
@paul
6 years ago
4,325 posts
Checkout the Jamroom quota system - https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2985/understanding-profile-quotas
Hth


--
Paul Asher - JR Developer and System Import Specialist
Strumelia
Strumelia
@strumelia
6 years ago
3,602 posts
@resif , there's also a very handy compare Tool you can find if you go to your ACP -> Profile module, under -> Tools, click on Quota Compare. It'll be located at : https://(yoursite.com)/profile/quota_compare
In it, you can turn on/off access to various site functions ('rights', as you put it) for the different Quotas (member roles) you create.


--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015
resif
@resif
6 years ago
187 posts
Strumelia:
@resif , there's also a very handy compare Tool you can find if you go to your ACP -> Profile module, under -> Tools, click on Quota Compare. It'll be located at : https://(yoursite.com)/profile/quota_compare
In it, you can turn on/off access to various site functions ('rights', as you put it) for the different Quotas (member roles) you create.

ok i saw its really good..
resif
@resif
6 years ago
187 posts
but i want to give permission to some profiles reading articles with paid subscribtion... is it possible any paid module
michael
@michael
6 years ago
7,692 posts
Depends what module you're using for 'articles', but the general idea is you could add an {if} statement into your modules item_detail.tpl page and only show the full details to users in certain quotas.

So if quotas 3,4 and 5 are your paid quotas and by 'articles' you mean jrBlog ?? then in the blogs item_detail.tpl template you could add
{if $_user['profile_quota_id'] in (3,4,5)}
 SHOW THE ARTICLE HERE
{else}
You have to join a paid quota to read this article.
{/if}

Docs: "Template Blocks"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/3126/template-blocks
resif
@resif
6 years ago
187 posts
michael:
Depends what module you're using for 'articles', but the general idea is you could add an {if} statement into your modules item_detail.tpl page and only show the full details to users in certain quotas.

So if quotas 3,4 and 5 are your paid quotas and by 'articles' you mean jrBlog ?? then in the blogs item_detail.tpl template you could add
{if $_user['profile_quota_id'] in (3,4,5)}
 SHOW THE ARTICLE HERE
{else}
You have to join a paid quota to read this article.
{/if}

Docs: "Template Blocks"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/3126/template-blocks

ok i will show this my developer... and one thing.. where is the articles intro view character settings foe how many character show.. and i didnt see Read More button for elastic2
michael
@michael
6 years ago
7,692 posts
Get your developer to read here:
https://www.smarty.net/docsv2/en/language.modifier.truncate

All of the smarty3 features are available to him along with many extras provided by jamroom.

Tags