Punkte im Profil anzeigen - Druckversion +- MyBB.de Forum (https://www.mybb.de/forum) +-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html) +--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html) +--- Thema: Punkte im Profil anzeigen (/thread-5178.html) |
RE: Punkte im Profil anzeigen - Samu - 08.03.2007 Okay, folgendes: Du brauchst einen neuen Hook und eine neue Funktion. Müsste dann funktionieren: Der Hook lautet wie folgt: PHP-Code: $plugins->add_hook('member_profile_start', 'mybux_bux_total_profil'); Der Code wie folgt PHP-Code: function mybux_bux_total_profil(&$memprofile) Das ist ungetestet und könnte nicht funktionieren ;P ich weiß es nicht ^^ RE: Punkte im Profil anzeigen - Sunny Boy 13 - 08.03.2007 Wo muss ich den Code hin schreiben =D? RE: Punkte im Profil anzeigen - Samu - 08.03.2007 in die plugindatei RE: Punkte im Profil anzeigen - SweetySchnuffel - 08.03.2007 Beide Code-Teile in das Plugin? Egal an welche Stelle? RE: Punkte im Profil anzeigen - Samu - 08.03.2007 den hook da wo die anderen hooks sind , die funktion kannste hinpacken wo du magst glaub ich , setz sie einfach mal nach function mybux_bux_total RE: Punkte im Profil anzeigen - SweetySchnuffel - 08.03.2007 MySQL error: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''' at line 1 Query: SELECT bux FROM mybb_users WHERE uid=' Bekomm ich in meiner Mitgliederliste angezeigt. Plugin mit den Codes mal im Anhang. RE: Punkte im Profil anzeigen - Samu - 08.03.2007 Mom, Mitgliederliste oder Profil >.< du verwirrst mich.... RE: Punkte im Profil anzeigen - SweetySchnuffel - 08.03.2007 Profil meinte ich. ô.O Sorry. Ich verwechsel das schon zum 2ten mal <,< RE: Punkte im Profil anzeigen - Samu - 08.03.2007 Okay, das heißt er übernimmt die variable nicht, versuch mal den code PHP-Code: function mybux_bux_total_profil(&$memprofile) RE: Punkte im Profil anzeigen - SweetySchnuffel - 08.03.2007 Fehler bleibt. |