Log in

View Full Version : Need help about Community


ITDarasgah
05-21-2009, 08:08 PM
Hi,
I want to remove the Community from my forum Please guide me ho can do it..for more information see the picture..

HMBeaty
05-21-2009, 08:28 PM
Do you want to disable the "Community" modification? Or do you just want to take the link out of the navbar?

ITDarasgah
05-21-2009, 08:33 PM
Do you want to disable the "Community" modification? Or do you just want to take the link out of the navbar?

I want to disable the Community and remove from navbar too....don't need this modification in my forum...

IdanB
05-21-2009, 08:39 PM
edit the "navbar" template & look for this code:


<if condition="$show['communitylink'] AND $show['popups']">
<td class="vbmenu_control"><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> <script type="text/javascript"> vbmenu_register("community"); </script></td>
<else />


replace it with:


<if condition="$show['communitylink'] AND $show['popups']">
<else />

(either that or reverse IF condition & remove ELSE)

HMBeaty
05-21-2009, 08:42 PM
Ok, I'm not sure on how to disable the community itself, but I will look into it, so if someone gets to it before I do, by all means, post the solution.

If you're trying to remove just the link, in your navbar template find:
<if condition="$show['communitylink'] AND $show['popups']">
<td class="vbmenu_control"><a id="community" href="$show[nojs_link]#community" rel="nofollow" accesskey="6">$vbphrase[community]</a> <script type="text/javascript"> vbmenu_register("community"); </script></td>
<else />
Replace that with:
<if condition="$show['popups']">
Still in your navbar template, find and remove:
<if condition="$show['communitylink']">
<!-- community link menu -->
<div class="vbmenu_popup" id="community_menu" style="display:none;margin-top:3px" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[community_links]</td></tr>
$template_hook[navbar_community_menu_start]
<if condition="$show['quick_links_groups']">
<tr><td class="vbmenu_option"><a href="group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
</if>
<if condition="$show['quick_links_albums']">
<tr><td class="vbmenu_option"><a href="album.php$session[sessionurl_q]">$vbphrase[pictures_and_albums]</a></td></tr>
</if>
<if condition="$bbuserinfo['userid']">
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=buddylist"><if condition="$show['friends_and_contacts']">$vbphrase[contacts_and_friends]<else />$vbphrase[contacts]</if></a></td></tr>
</if>
<if condition="$show['memberslist']">
<tr><td class="vbmenu_option"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td></tr>
</if>
$template_hook[navbar_community_menu_end]
</table>
</div>
<!-- / community link menu -->

ITDarasgah
05-21-2009, 09:26 PM
Thank you so much...done
One more help need...want to remove Social Groups like a Community...and guest don't see the Members List list..

HMBeaty
05-21-2009, 09:30 PM
For the memberlist, you can use this:

https://vborg.vbsupport.ru/showthread.php?t=144297

ITDarasgah
05-21-2009, 09:50 PM
For the memberlist, you can use this:

https://vborg.vbsupport.ru/showthread.php?t=144297

that is not working with 3.8.2
The following dependencies were not met:

1. This product is not compatible with version 3.8.2 of vBulletin. (Compatible starting with 3.6.0 / Incompatible with 3.6.99 and greater)

--------------- Added 1242995937 at 1242995937 ---------------

some one please help me

--------------- Added 1242995973 at 1242995973 ---------------

some one please help me

--------------- Added 1242996015 at 1242996015 ---------------

some one please help me

HMBeaty
05-22-2009, 06:58 PM
that is not working with 3.8.2
The following dependencies were not met:

1. This product is not compatible with version 3.8.2 of vBulletin. (Compatible starting with 3.6.0 / Incompatible with 3.6.99 and greater)
Thank you, I will update this for you later today

--------------- Added 1243042227 at 1243042227 ---------------

Ok, updated to 3.8.x

https://vborg.vbsupport.ru/showthread.php?t=214341

ITDarasgah
05-23-2009, 09:24 PM
Thank you, I will update this for you later today

--------------- Added 1243042227 at 1243042227 ---------------

Ok, updated to 3.8.x

https://vborg.vbsupport.ru/showthread.php?t=214341

Thank you so much...Install and work nice..like it
now tell me ho can remove the Social Groups from navabar that show after the removing of community.

HMBeaty
05-23-2009, 09:26 PM
Find and delete:
<td class="vbmenu_control"><a href="group.php?$session[sessionurl]">$vbphrase[social_groups]</a></td>
And find and delete:
<tr><td class="vbmenu_option"><a href="group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>

ITDarasgah
05-23-2009, 09:46 PM
Find and delete:
<td class="vbmenu_control"><a href="group.php?$session[sessionurl]">$vbphrase[social_groups]</a></td>
And find and delete:
<tr><td class="vbmenu_option"><a href="group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>

where to find it..I mean in which template?

HMBeaty
05-23-2009, 09:47 PM
I apologize, it's in your navbar template

ITDarasgah
05-23-2009, 10:18 PM
I apologize, it's in your navbar template

Thank you...done