Is there any way How I can hide album description from guests? I was looking for hide bbcode but it seems that nothing like that exists for coppermine.
I see that I have to answer myself :D
so open the file include/themes.inc.php.
FIND (2 occurences)
foreach($alb_list as $album) {
$count ++;
AFTER ON NEW LINE ADD
//to hide description from unlogged users
if(!USER_ID){
$album['album_desc'] = '<a href="login.php?referer=index.php">Login</a> or <a href="register.php">Register</a> to see the Download Link';
}
Glad you found the answer. Thank you for resolving your thread.
Quote from: blue_eyed_devil on August 20, 2012, 07:51:34 PM
open the file include/themes.inc.php.
Even better: copy the needed functions from
themes/sample/theme.php to your theme's
theme.php file and apply the modification in that file.