Find solution, but need some code modification :
in nggfunctions.php change text in bold
function nggShowGalleryTags($taglist, $template = ”) {
// $_GET from wp_query
$pid = get_query_var(‘pid’);
$pageid = get_query_var(‘pageid’);
// get now the related images
$picturelist = nggTags::find_images_for_tags($taglist , ‘ASC’);
// look for ImageBrowser if we have a $_GET(‘pid’)
if ( $pageid == get_the_ID() || !is_home() )
if (!empty( $pid )) {
foreach ($picturelist as $picture) {
$picarray[] = $picture->pid;
}
$out = nggCreateImageBrowser($picarray);
return $out;
}
// go on if not empty
if ( empty($picturelist) )
return;
// show gallery
if ( is_array($picturelist) )
$out = nggCreateGallery($picturelist, false, $template);
$out = apply_filters(‘ngg_show_gallery_tags_content’, $out, $taglist);
return $out;
}
in shortcode.php
function show_tags( $atts ) {
extract(shortcode_atts(array(
‘gallery’ => ”,
‘template’ => ”,
‘album’ => ”
), $atts ));
if ( !empty($album) )
$out = nggShowAlbumTags($album);
else
$out = nggShowGalleryTags($gallery, $template);
return $out;
}
and you can do the same thing with nggShowAlnumTags i think if you use it ??