Good art is a taste, good design is an opinion.


Come as guest, stay as family.
Board Index

Come as guest, stay as family.


You are not connected. Please login or register

Foto

[Archived] private section



Go to page : 1, 2  Next

View previous topic View next topic Go down Message [Page 1 of 2]

1
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
  • Description:
sir .. i have a question

how do i make a private section for particular group or member

for those who donated or gave access to them 

hope you got it thanks waiting for response 

  • Information:
Forum:www.pixibotz.comVersion:PUNBB
Type:Errors in codeTags:private,section

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

2
Offline

  Rapid

Rapid
Punbb Rookie
Punbb Rookie
When you create a new forum, set permissions that only a certain group can see that forum. For example: only VIP group can see, read and write in that forum

Powered by PunBB
Currently 0 users have thanked Rapid for this post:

3
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
i tried to that but problem is that there only shows as member's Administrators

no other groups shown in

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

4
Offline

  Virus

Virus
★Moderator★
★Moderator★
Go in the
Admin Panel > General > Categories and forums > Create what you want
There you can create a forum, and when you hit Save it should take you to the Permissions tab. Once there click Advanced Mode to see every permission and through that panel you can select only a certain group to view and reply to that section! Smile

Powered by PunBB
Currently 0 users have thanked Virus for this post:

5
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
https://i.servimg.com/u/f68/19/41/09/39/priv11.jpg

what actually i want is something like this

it can only access people who i give permission

if possible please let me know

as per ur tut i tried but the admin getting all access to it i dont like him to get it ...


for simple understanding every single category have access to a perticular person until i give authorize to join that category

hope u got it thanks

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

6
Offline

  Shadow

Shadow
Administrator
Administrator
The forum administrator will always have an access to all forum sections.

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

7
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
can able to hide to administrator panel to some perticular member ?

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

8
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
Hello,
No, if you gave to a member administrator rights it can access the ACP(Admin Control Panel).

Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

9
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
ok i got it but how can i do that what i posted in above picture to look it as private

how about this is only for guest can able to do for some groups and for some user ?

https://punbb-design.forumotion.com/t550-javascript-forum-protect-v1-02507014-jq1-9-1

this is ur tut previous to protect forum

thanks

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

10
Offline

  Virus

Virus
★Moderator★
★Moderator★
yaanz wrote:[link="/t1111-private-section#7398"]ok i got it but how can i do that what i posted in above picture to look it as private

how about this is only for guest can able to do for some groups and for some user ?

https://punbb-design.forumotion.com/t550-javascript-forum-protect-v1-02507014-jq1-9-1

this is ur tut previous to protect forum

thanks
Yes if you follow that tutorial you will be able to do what the image shows and if you do the steps i mentioned before you'll have what you need for the category.

Powered by PunBB
Currently 0 users have thanked Virus for this post:

11
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
Code:
var ForumName = 'Name of forum'; - Set the name of the wanted for to be protected. For example: Private Leaks.
var Message = 'Private!'; - This is the message which will appear on protected forum.

is it possible to make guest and few groups only can see the forum name as (Private Leaks)

and when they click on it gives (error message) as you dont have access to this forum need to upgrade ur account

something like that ?

Note : reason for this private section is ( until a user paid or donated to get a premiums access ) to see this forum

hope u got it thanks

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

12
Offline

  Shadow

Shadow
Administrator
Administrator
Yes, it's possible.

Private text showing to Guests only:
Code:
[panda=js]$(function () {
        if (_userdata["session_logged_in"] == 0) {
            var NomeDoForum = 'FORUM NAME';
            var Mensagem = 'Private';
            $('.pun .main-content .statused tr:contains("' + NomeDoForum + '") td.tcr').html('<center><i><span class="desc lighter blend_links">' + Mensagem + '</i></span></center>');
        }
    });

Private text showing to Guests and Registered Members:
Code:
[panda=js]  $(function () {
        if (_userdata["session_logged_in"] == 0 || _userdata["user_level"] == 0) {
            var NomeDoForum = 'FORUM NAME';
            var Mensagem = 'Private';
            $('.pun .main-content .statused tr:contains("' + NomeDoForum + '") td.tcr').html('<center><i><span class="desc lighter blend_links">' + Mensagem + '</i></span></center>');
        }
    });

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

13
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
this works great

sir but problem is when i logout and checked with as guest i can view its topic

where else i dont want the guest or member's to see the topic unless they register and pay to view the topic

as same as in this forum like (premium access) when they click on the topic says error or says its get premium access

thanks in advance

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

14
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
Hello,
You must change the forum's permissions to make it unaccessible by changing the permissions make them only staff and premium members allowing view private forum topics and dont allow members and guests to view forum and read/reply its topics.


Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

15
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
Dark-Avenger wrote:[link="/t1111p10-private-section#7454"]Hello,
You must change the forum's permissions to make it unaccessible by changing the permissions make them only staff and premium members allowing view private forum topics and dont allow members and guests to view forum and read/reply its topics.


at last with ur help got it

Sorry, but only administrators can read topics in this forum. ( am getting message when i tested with a test account

i want to change with other text how to do it ?

and one more thing i forgot to ask ( how to add more forum private i have to repeat every forum with new js ? or add same script in one js with different forum name if not please tell ?


thanks waiting for response ..

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

16
Offline

  Van-Helsing

Van-Helsing
★Moderator★
★Moderator★
Hello,
What kind of message are you receiving? To change the text Private change variable's value 'Private' into which text you want. For you second question just copy and paste the js in the same js that you are using and change the forum details.

Powered by PunBB
Currently 0 users have thanked Van-Helsing for this post:

17
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
Dark-Avenger wrote:[link="/t1111p10-private-section#7462"]Hello,
What kind of message are you receiving? To change the text Private change variable's value 'Private' into which text you want. For you second question just copy and paste the js in the same js that you are using and change the forum details.

hi

am getting a message of (only administrator can view this topic ) instead of this i want to change to

only premium member can access this category ( how to do it ) ?

thanks in advance

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

18
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
bump !!!

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

19
Offline

  Shadow

Shadow
Administrator
Administrator
Can you make a screenshot of message you are getting because I don't understand what you want to change?

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

20
Offline

  yaanz

yaanz
Punbb Junior
Punbb Junior
Shadow wrote:[link="/t1111p10-private-section#7537"]Can you make a screenshot of message you are getting because I don't understand what you want to change?

here is the screenshot : [Archived] private section Name10

i want to change the text with some thing else

hope u got it now ...

Powered by PunBB
Currently 0 users have thanked yaanz for this post:

21
Offline

  Sponsored content



Powered by PunBB
Currently 0 users have thanked Sponsored content for this post:

View previous topic View next topic Back to top Message [Page 1 of 2]


Go to page : 1, 2  Next

Topic URL's

URL
BBcode
HTML

Permissions in this forum:
You cannot reply to topics in this forum