Title: olojac's Replies | WordPress.org

---

# olojac

  [  ](https://wordpress.org/support/users/olojac/)

 *   [Profile](https://wordpress.org/support/users/olojac/)
 *   [Topics Started](https://wordpress.org/support/users/olojac/topics/)
 *   [Replies Created](https://wordpress.org/support/users/olojac/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/olojac/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/olojac/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/olojac/engagements/)
 *   [Favorites](https://wordpress.org/support/users/olojac/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: NextGEN Gallery] edit thumb quality](https://wordpress.org/support/topic/plugin-nextgen-gallery-edit-thumb-quality/)
 *  [olojac](https://wordpress.org/support/users/olojac/)
 * (@olojac)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/plugin-nextgen-gallery-edit-thumb-quality/#post-1345120)
 * Hi,
    I found a quick hack/fix for this problem:
 * In nextgen-gallery/admin/ajax.php line 110:
    `if ( $thumb->save($picture->thumbPath,
   100)) {`
 * change this to:
 * `if ( $thumb->save($picture->thumbPath, 90)) {`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Nextgen gallery display tags below images](https://wordpress.org/support/topic/nextgen-gallery-display-tags-below-images/)
 *  [olojac](https://wordpress.org/support/users/olojac/)
 * (@olojac)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/nextgen-gallery-display-tags-below-images/#post-1083469)
 * I found a way to do this and since I couldn’t find it anywhere else I thought
   I post it here, even though this question where asked a few month ago:
 *     ```
       <?php $tags = wp_get_object_terms($image->pid,'ngg_tag') ?>
   
       <?php foreach ( $tags as $tag ) : ?>
          <a href="<?php bloginfo('url'); ?>/tag/<?php echo $tag->slug; ?>"><?php echo $tag->name; ?></a>
       <?php endforeach; ?>
       ```
   
 * (This just prints the tags as links to [http://example.com/tag/example-tag](http://example.com/tag/example-tag),
   I guess that the links won’t work but you get the point :D)
 * This would be added in your ngg gallery template, inside the loop for printing
   out the images.

Viewing 2 replies - 1 through 2 (of 2 total)