Hello, i have ask about watermark.
I want watermark not show for logged user.
I try this, but image not show.
<div class="image-unit">
<?php
if(zp_loggedin()) {
#show album thum, without watermark
?>
" title="<?php printBareAlbumTitle();?>">
<?php if (getOption('thumb_crop')) {
printCustomSizedImage(getAnnotatedAlbumTitle(),getOption('thumb_size'),getOption('thumb_size'),getOption('thumb_size'),getOption('thumb_size'),getOption('thumb_size'),null,null,'remove-attributes', null, null);
} else {
printAlbumThumbImage(getAnnotatedAlbumTitle(),'remove-attributes');
} ?>
<h3><?php printBareAlbumTitle();?></h3>
<p class="album-desc"><?php echo truncate_string(strip_tags(getAlbumDesc()),120,'...'); ?></p>
<?php
}else{
?>
" title="<?php printBareAlbumTitle();?>">
<?php if (getOption('thumb_crop')) {
printCustomAlbumThumbImage(getAnnotatedAlbumTitle(),getOption('thumb_size'),getOption('thumb_size'),getOption('thumb_size'),getOption('thumb_size'),getOption('thumb_size'),null,null,'remove-attributes');
} else {
printAlbumThumbImage(getAnnotatedAlbumTitle(),'remove-attributes');
} ?>
<h3><?php printBareAlbumTitle();?></h3>
<p class="album-desc"><?php echo truncate_string(strip_tags(getAlbumDesc()),120,'...'); ?></p>
<?php
}
?>
</div>
↧
kankburhan on "Watermark not show for login user"
↧