New theme: rhinoswelt New theme: rhinoswelt
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

New theme: rhinoswelt

Started by Timos-Welt, February 04, 2010, 03:57:41 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Timos-Welt


Joachim Müller


cyberdyne2

Sorry to be a pain but none of my full sized images display with this theme.
Thumbnails are fine.

Thanks
v.1.5.22

cyberdyne2

Transparent overlay was causing it. Turned it off, everything is fine. Turned it on, display problems again.
v.1.5.22

Makc666

#4
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']),