Frank
Forum Replies Created
-
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Mehrere Anpassung für PHP 8Hallo Dirk,
habe mit Schreck festgestellt, das diese Auswahl nicht mehr funktioniert. Liegt bestimmt an die query-Dateien die nach und nach von WordPress erneuert werden.
Habe daher meine Anpassung zum Anfang nochmals vorgenommen und diese überarbeitet und es funktioniert. (WordPress aktuelle Version, PHP Version 8.0.8)Also “windows.php” unter “/admin/tinymce/”
nach den Zeilen (gallerytag)
<select id=”gallerytag” name=”gallerytag” style=”width: 200px”><option value=”0″ selected=”selected”><?php _e(“Select or search for a gallery”
<?php $liste = $nggdb->find_all_galleries('gid', 'DESC'); if (is_array($liste)) { foreach ($liste AS $list) { echo '<option value="'.$list->gid.'">'.$list->gid.' - '.$list->title.'</option>'."\n"; } } ?>
nach den Zeilen (albumtag)
<select id=”albumtag” name=”albumtag” style=”width: 200px”><option value=”0″ selected=”selected”><?php _e(“Select or enter album”
<?php $liste = $nggdb->find_all_album('id', 'DESC'); if (is_array($liste)) { foreach ($liste AS $list) { echo '<option value="'.$list->id.'">'.$list->id.' - '.$list->name.'</option>'."\n"; } } ?>
nach den Zeilen (singlepictag)
<select id=”singlepictag” name=”singlepictag” style=”width: 200px”><option value=”0″ selected=”selected”><?php _e(“Select or enter picture”
<?php $liste = $nggdb->find_last_images('', '200', '', '', 'pid'); if (is_array($liste)) { foreach ($liste AS $list) { echo '<option value="'.$list->pid.'">'.$list->pid.' - '.$list->alttext.'</option>'."\n"; } } ?>
nach den Zeilen (recentgallery)
<select id=”recentgallery” name=”recentgallery” style=”width: 200px”><option value=”0″ selected=”selected”><?php _e(“Select or search for a gallery”
<?php $liste = $nggdb->find_all_galleries('gid', 'DESC'); if (is_array($liste)) { foreach ($liste AS $list) { echo '<option value="'.$list->gid.'">'.$list->gid.' - '.$list->title.'</option>'."\n"; } } ?>
nach den Zeilen (randomgallery)
<select id=”randomgallery” name=”randomgallery” style=”width: 200px”><option value=”0″ selected=”selected”><?php _e(“Select or search for a gallery”
<?php $liste = $nggdb->find_all_galleries('gid', 'DESC'); if (is_array($liste)) { foreach ($liste AS $list) { echo '<option value="'.$list->gid.'">'.$list->gid.' - '.$list->title.'</option>'."\n"; } } ?>
Hoffe, dass ich weiterhelfen konnte.
Gru? Frank- This reply was modified 3 years, 4 months ago by Frank.
solution:
simple-history/css/style.css
row 54
.SimpleHistoryGui {
to
.dashboard_page_simple_history_page .SimpleHistoryGui {