Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two different login. one is for simple users (com_user) one is for users of social networking (including JomSocial)

I have the 2.5.7 version of joomla and the version of JomSocial 2.6.1

How can I prevent users easy access to socialnetwork? thanks a lot

I tried this but it does not work.

$userattr = JFactory::getUser(); $condition = $userattr->get('usertype'); if ($condition == 'Registered') { redirect user to login page }

share|improve this question
what have you tried? – UnholyRanger Feb 22 at 16:26
I tried this but it does not work. ` $userattr = JFactory::getUser(); $condition = $userattr->get('attribute'); if ($condition == 'return value') { redirect user to login page } ` – jvmale Feb 22 at 18:54
What result is when you put var_dump($condition); exit; into code as a results? – Marin Sagovac Feb 22 at 20:05
result is: string(1) "2" – jvmale Feb 22 at 20:22

1 Answer

Jomsocial access depends on the access level of the menu items in the jomsocial menu.

So just create a new group for jomsocial users (i.e. jomsocialregistered) and assign the jomsocial menu items. This will leave you the task of assigning correctly the jomsocial users to this newly created group, but I don't know how you plan to achieve this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.