• I find the image count in the albums unnecesary and i am editing the album-extend.php to remove it with no success. I would also like to keep the description for each gallery, otherwise i would go to compact albums.
    But if i remove this part from the album-extend.php (as someone suggests in another thread) not only the image count but the description dissapears as well;

    <?php if ($gallery->counter > 0) : ?>
    				<p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
    				<?php endif; ?>

    Is it possible to delete the image count while keeping the description? Any help would be appreciated.

Viewing 1 replies (of 1 total)
  • Thread Starter kamogawa32

    (@kamogawa32)

    I don′t know what happened but finally got the description back by adding a blank paragraph after deleting that part. From this;

    <div class="ngg-description">
    				<p><?php echo $gallery->galdesc ?></p>
    				<?php if ($gallery->counter > 0) : ?>
    				<p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
    				<?php endif; ?>

    to this;

    <div class="ngg-description">
    				<p><?php echo $gallery->galdesc ?></p>
    				<p></p>
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: NextGEN Gallery] Remove image count from extend albums’ is closed to new replies.