/* gallery information file (top)
* VALUES: [ <filename> ] */
$settings['info_file_top'] = '_info_top.txt'; //Added "_top" for text below thumbs hack 11/19 -ds
// ******ADDED BY DANIEL 11/19******
/* gallery information file (bottom)
* VALUES: [ <filename> ] */
$settings['info_file_bottom'] = '_info_bottom.txt';
// *************END ADD************
<div id="gallery_description_top"> //Added "_top" for text below thumbs hack 11/19 -ds
<?php
if (file_exists("galleries/".$settings['info_file_top'])) {
echo get_include_contents("galleries/".$settings['info_file_top']);
}
?></div>
<!-- BOTTOM gallery description div --> //Added for text below thumbs hack 11/19 -ds
<div id="gallery_description_bottom">
<?php
if (file_exists("galleries/".$settings['info_file_bottom'])) {
echo get_include_contents("galleries/".$settings['info_file_bottom']);
}
?></div>
--DIVIDER--) into the
_info.txtfile between the top text and the bottom text, and divide the parsed text into two chunks to be sent to different divs, so you just have to change the text changing function.