Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

Question Permission to write only for publisher Group

More
16 years 11 months ago - 16 years 11 months ago #19244 by tc001mt
Hello, i have some problems with my forum:
Many jammers are writing in my forum and to solve this problem i thought to assign to Joomla publisher group the people can post.

How can i subst Registered group with Publisher group?
This because:

I want all people (unregistered too) can read posts because forum is helping many people for free and I cannot change status of register users because of virtuemart (of 4000 register user 200 are using virtuemart, 100 are using forum and 5 are jammer)



i foud many $my_id= maybe i can subst this with somebody different ?

If is more simple i can only hide icons (post , new thread etc.) to users not in Pubblisher group.

The problem is i don't know how :(

thank you for your help, and sorry for my very bad english..
Last edit: 16 years 11 months ago by tc001mt.

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #19391 by xillibit
Hello,

do you looked this, it can help you : www.kunena.com/forum?func=view&catid=114&id=9208

I don't provide support by PM, because this can be useful for someone else.

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #19469 by tc001mt
Many many thanks for you interest to my problem but is not what i was searching for:

With this i can add users are not in group is using private forum..
main problem of private forum is it is hidden for all others users groups.

I need all groups (unregistered too) can see but only , for example, publisher group can write.

Thank you again

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #19471 by grumblemarc
Not possible.

We love stars on the Joomla Extension Directory . :-)

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago - 16 years 11 months ago #19726 by tc001mt
Ok, i tried to simply hide icons and i modified message.php (line 351)
Code:
$user =& JFactory::getUser(); if ($user->usertype == 'Author' && !isset($msg_closed)): //if ($my->id > 0 && !isset($msg_closed)):

(line 363)
Code:
$user =& JFactory::getUser(); if (!isset($msg_closed)) { if ($user->usertype == 'Author') echo " " . $msg_reply; if ($user->usertype == 'Author') echo " " . $msg_quote;

and in view.php

Now looks like works but only for Author (superadmin too have not icons for reply)

If i code with the follow
Code:
if ($user->usertype == 'Author' || $user->usertype == 'Administrator' || $user->usertype == 'Super Administrator') echo " " . $msg_reply;
or
Code:
if ($user->usertype == 'Author' && $user->usertype == 'Administrator' && $user->usertype == 'Super Administrator') echo " " . $msg_reply;

I have problems with login because when i'm inside forum login box show :

Hello Admin

you are not logged


(icons are displayed random)

Where is my problem?
Last edit: 16 years 11 months ago by tc001mt.

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #19736 by Matias
You have to check every user > Author as well.

Please Log in or Create an account to join the conversation.

Time to create page: 0.262 seconds