- Posts: 11
- Thank you received: 0
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 need to hide CB profile pic from guests
Is there any way to make the CB profile pic hidden from no registered users?
I posted this a couple days ago and i find it now missing, so i am posting again..
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Matias wrote: Community Builder may have that feature -- and it should work in Kunena, too.
I just went through the configuration module of community builder, and i was unable to locate any section that allows you to set a preference, as to who can view a users profile picture in kunena.
If you can please post where you think it would be. I would be very thankful.
Please Log in or Create an account to join the conversation.
I hope that helps.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- pepperstreet
-
- Offline
- Junior Member
-
- Posts: 22
- Thank you received: 3
3rd option:
Anyway, the first box may contain CB Substitutions (dynamic placeholders). With its special syntax you can display any HTML and CB-fields and check for some conditions. Everything without a line of PHPcode or any core hacks. The following "quick and dirty" example gives you a message for Guests, and the avatar thumbnail for registered users:
[cb:if user="#me" user_id="0"]Hey, you are a guest and cant see my avatar picture![/cb:if]
[cb:if user="#me" usertype="Registered"][cb:userfield field="avatar" reason="list" /][/cb:if]
4th option (you will need programming knowledge):
You can achieve the same with more effort and possibilities in PHP. The help points to the following file...
components/com_comprofiler/plugin/user/plug_cbsimpleboardtab/view/
file cb.simpleboardtab.sidebar.php
see function ShowExpert
I advice you to try the first method with substitutions... please visit Joomlapolis Forum and search for some posts, because there is not much documentation on CB Substitutions. Just a rough overview here . The CB-Forum plugin includes sample substitutions above the mentioned text area. The samples will genearte the typical sidebar-infos in n unordered list style output! Check it out, more or less, its learning by doing. Definitely the coolest thing about CB
Please Log in or Create an account to join the conversation.