https://www.icyphoenix.com/viewtopic.php?f=26&t=2208&p=22064#p22064
-----------------------------------
Artie
Sun 09 Dec, 2007 03:49

Re: Possible To Get This Effect When Enlarging Pictures?
-----------------------------------
[quote user="Tahoebuff" post="22058"]Artie,

I got these modifications working on my forum album. What if I wanted to choose "View full pic as a popup". What would I have to modify to make the link for the popup point to the lighbox feature instead?

Thanks in advance for any help you can offer...

Tahoebuff[/quote]

I guess it would be enough to add the include for the .js and .css files to the overall_header.tpl

and you would probably have to make the  change below to several album php files. (album.php, album_cat.php, and others)

FIND
[codeblock]'TARGET_BLANK' => ($album_config['fullpic_popup']) ? 'target="_blank"' : '',[/codeblock]
REPLACE WITH
[codeblock]//'TARGET_BLANK' => ($album_config['fullpic_popup']) ? 'target="_blank"' : '',
		'TARGET_BLANK' => ($album_config['fullpic_popup']) ? 'rel="lightbox"' : '',[/codeblock]


