- Posts: 17
- Thank you received: 0
- Forum
- Kunena in other languages
- Language Specific
- German
- K 1.0 and Fireboard Archive
- [gelöst] Falscher Avatar im Profil mit Jomsocial
Blue Eagle 5 v1.6.2 has been Released for Kunena 5.2 (20 Jan 2021)
The Kunena team has announce the arrival of Kunena template Blue Eagle 5 v1.6.2 which is now available for download. This version addresses most of the issues that were discovered in development.
REQUIREMENTS
Blue Eagle 1.6.x requires Kunena 5.2.x to work with
Question [gelöst] Falscher Avatar im Profil mit Jomsocial
hat jemand eine Lösung um die anzeige des eigenen avatars bei der profilseite zu ändern?
ich benutze jomsocial und wenn ich irgendeine profilseite aufrufe erscheint (wie bei euch allen) das eigene bild.
Please Log in or Create an account to join the conversation.
Um dort ein anderes anzuzeigen, als im Rest des Forum, müsstest du imho so einiges am PHP-Code verändern.
Wenn du dein eigenes komplett ausblenden willst, geht das per CSS, jedoch werden dadurch auch die Avatare der anderen auf der Profilseite ausgeblendet:
CSS. style.css aus components/com_community/templates/default/css
(Veränderungen rot markiert)
#community-wrap .profile-avatar {
border:8px solid #E4E3D1;
float:left;
display:none;
}
#community-wrap div.profile-info {
margin:0 0 0 4px;
float:left;
}
Please Log in or Create an account to join the conversation.
Nö, ich seh Deinen Kopfhörer in Deinem Profil.ich benutze jomsocial und wenn ich irgendeine profilseite aufrufe erscheint (wie bei euch allen) das eigene bild.
Was soll denn das Resultat dieser Lösung sein?hat jemand eine Lösung um die anzeige des eigenen avatars bei der profilseite zu ändern?
... Sonntags lassen meine hellseherischen Fähigkeiten irgendwie rapide nach.

Please Log in or Create an account to join the conversation.
Hier im Forum die Funktion deaktiviert (aus besagtem Grund schätze ich).
Ich möchte aber das Profil von Kunena nutzen um alle Forenfunktionen wie zb. Signatur nutzen zu können.
Wie gesagt - das funktioniert auch - nur wird dann nicht das eigene Profilbild angezeigt, sondern das vom Admin.
Please Log in or Create an account to join the conversation.
Hier im Forum ist das Profil mitsamt Avatar von JomSocial.Es geht um das Profil in Kunena - mit dem Avatar von Jomsocial.
Hier im Forum die Funktion deaktiviert (aus besagtem Grund schätze ich).
Signaturen funktionieren hier im Forum auch mit dem JomSocial-Profil.Ich möchte aber das Profil von Kunena nutzen um alle Forenfunktionen wie zb. Signatur nutzen zu können.
Oder steh ich auf dem Schlauch?

Please Log in or Create an account to join the conversation.
Kannst ja mal eine Signatur anlegen.

Please Log in or Create an account to join the conversation.
Nur woher kommt dann diese hier ? Angelegt bevor JomSocial integriert wurde? Kannst ihn ja mal befragen.

edit: ok, über Umweg möglich.

Ist bekannt und Änderung geplant, hier lesen .
Da steht auch, wie die Signature trotzdem reinkommt.

Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
vielleicht kann mir jemand sagen wo ich die datenbankabfragen für die kunena profilseite finde?
Please Log in or Create an account to join the conversation.
if ($fbConfig->avatar_src == "jomsocial")
{
// Get CUser object
$user =& CFactory::getUser($leaf->userid);
$msg_avatar = '<span class="fb_avatar"><img src="' . $user->getAvatar() . '" alt="" /></span>';
Du kannst Dich am Avatar vom CB orientieren:
else if ($fbConfig->avatar_src == "cb")
{
$database->setQuery("SELECT avatar FROM #__comprofiler WHERE user_id=$userid AND avatarapproved=1");
$avatar = $database->loadResult();
Ich hab kein JomSocial und kann da jetzt nicht weiter helfen, da ich die Tabellen vom JomSocial nicht kenne.
Please Log in or Create an account to join the conversation.
Forum Access
- Not Allowed: to create new topic.
- Not Allowed: to reply.
- Not Allowed: to edit your message.
- Forum
- Kunena in other languages
- Language Specific
- German
- K 1.0 and Fireboard Archive
- [gelöst] Falscher Avatar im Profil mit Jomsocial