plugin cpg_pms anzeige ändern nicht mehr rechts neben menü plugin cpg_pms anzeige ändern nicht mehr rechts neben menü
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

plugin cpg_pms anzeige ändern nicht mehr rechts neben menü

Started by ralf45_nrw, October 10, 2013, 12:09:00 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ralf45_nrw

hallo,

habe das plugin cpg_pms installiert.
wen man sich anmeldet dann schreibt er ja das "Willkommen zurück ...... Private Nachrichten: 0 ungelesen; gesamt 0" rechts neben dem menü.

habe mal gesucht und ich nehme an es die richtige stelle in der codebase.php der das veranlasst (normalerweise steht SUB_MENU habe es in ADMIN_MENU geändert):

function pms_loginform_start($html)
{
global $loginFormHtml;

    if (!strpos($html,'{LOGIN_FORM}')) {
$html = str_replace('{ADMIN_MENU}','{ADMIN_MENU}  {LOGIN_FORM}',$html);
}
    $html = str_replace('{LOGIN_FORM}',$loginFormHtml,$html);

    return $html;
}



nun möchte ich aber das es wo anders angezeigt wird nicht neben dem menü sondern in einem div container auf der seite der bei mir überhalb des menüs liegt.
geht das generell und was muss dann anstatt ADMIN_MENU stehen. mein div heißt <div id="mr_profil_k">

hoffe habe mich verständlich ausgedrückt.

gruss ralf

coppermine 1.5.x

Αndré


ralf45_nrw

hallo,

da mein coppermine noch nicht fertig ist und das noch monate dauert bis ich alles angepasst habe, läuft sie bei mir unter xampp.


gruss ralf
coppermine 1.5.x

Αndré

Versuch mal
{ADMIN_MENU}
durch
<div id="mr_profil_k">
zu ersetzen, evtl. klappt das schon.