1.5.8 jump to maintable 1.5.8 jump to maintable
 

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

1.5.8 jump to maintable

Started by spacefun, August 13, 2010, 05:10:14 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

spacefun

Hallo
Die neue Version von Coppermine ist eine tolle Sache. Sehr durchdacht und strukturierter als 1.4.xx.

Was mir aufgefallen ist, wäre folgendes. Wenn ich bei der Bildansicht auf weiter klicke springt die Seite immer an den oberen Rand des Bildtabelle.
Beispiel: http://coppermine-gallery.net/demo/cpg15x/displayimage.php?album=3&pid=7#top_display_media
An und für sich eine gute Sache.

In meinem Fall möchte ich diese Funktion aber ausschaltern, da ich die Gallery in einem Frame öffen und diese Funktion da nicht so toll ist.

Weiss jemand wo ich suchen muss um die Seite immer als "top" ausgeben zu lassen.?

danke

Αndré

Kopiere folgendes in die Datei theme.php deines Themes:
function theme_display_image($nav_menu, $picture, $votes, $pic_info, $comments, $film_strip)
{
   global $CONFIG, $LINEBREAK;

   $superCage = Inspekt::makeSuperCage();

   $width = $CONFIG['picture_table_width'];

   //echo '<a name="top_display_media"></a>'; // set the navbar-anchor
   starttable();
   echo $nav_menu;
   endtable();

   starttable();
   echo $picture;
   endtable();
   if ($CONFIG['display_film_strip'] == 1) {
       echo $film_strip;
   }


   echo $votes;

   $picinfo = $superCage->cookie->keyExists('picinfo') ? $superCage->cookie->getAlpha('picinfo') : ($CONFIG['display_pic_info'] ? 'block' : 'none');
   echo $LINEBREAK . '<div id="picinfo" style="display: '.str_replace('.gif','.png',$picinfo).';">' . $LINEBREAK;
   starttable();
   echo $pic_info;
   endtable();
   echo '</div>' . $LINEBREAK;

   echo '<a name="comments_top"></a>';
   echo '<div id="comments">' . $LINEBREAK;
       echo $comments;
       echo '</div>' . $LINEBREAK;

}


Das ist jetzt nur quick & dirty, da die Seiten trotzdem noch mit #top_display_media aufgerufen werden. Wenn dir das nicht gefällt durchsuche den Quelltext danach und entferne es.

spacefun

Vielen Dank André

Genau danach habe ich gesucht.

Gruss space