1
I've searched and I didn't find solution for adding unique meta description for each photo in MyAlbum-p.
So, here is the solution:
in photo.php, after:
//
$xoopsTpl->assign( 'xoops_pagetitle' , $photo['title'] ) ;
add this two lines:
$photo_desc = strip_tags($photo['description'], '');
$xoTheme->addMeta('meta', 'description', $photo_desc);
Now you'll have unique meta description based on description of the photo.
MyAlbum-p is great