Have fun! :)
Demo (http://coppermine-gallery.net/demo/cpg15x/?theme=rhinoswelt) - Download (https://sourceforge.net/projects/coppermine/files/Themes/1.5.x/cpg1.5.x_theme_rhinoswelt_v1.0.zip/download)
Sorry to be a pain but none of my full sized images display with this theme.
Thumbnails are fine.
Thanks
Transparent overlay was causing it. Turned it off, everything is fine. Turned it on, display problems again.
There is a problem with this theme.
P.S. Copy here -> http://forum.coppermine-gallery.net/index.php/topic,71034.msg346101.html#msg346101
If on the page "Last comments"
http://coppermine-gallery.net/demo/cpg15x/thumbnails.php?album=lastcom&cat=0&theme=rhinoswelt
comments have smiles the URLs for smiles will be replaced at the end from *.gif to *.png causing them stop working.
To fix this one you have to:
Open file:
./rhinoswelt/theme.php
Find block of code (search for full code comparison, as there are other blocks of code like this one):
$params = array(
'{CELL_WIDTH}' => $cell_width,
'{LINK_TGT}' => $target,
'{THUMB}' => $thumb['image'],
'{CAPTION}' => str_replace('.gif','.png',$thumb['caption']),
'{ADMIN_MENU}' => $thumb['admin_menu'],
);
Change line:
'{CAPTION}' => str_replace('.gif','.png',$thumb['caption']),
For line:
'{CAPTION}' => preg_match("#images/smiles/#i",$thumb['caption']) ? $thumb['caption'] : str_replace('.gif','.png',$thumb['caption']),