I've been looking at view.php -- but can't quite figure out what I need to do. I see that the code creating the pop-up appears around line 471. What I am wondering is if I can just change the code that appears in the "Loop" box of the Modify Settings screen.
The default is this:
<a href="[LINK]" title="[ALTTITLE]">
[THUMB]
<br />
[TITLE]
</a>
Can I replace the
a href="[LINK]" bit to something like the pop-up code from view.php:
"<a href=\"javascript:void(0);\" onClick=\"javascript:pop=window.open('" . WB_URL.MEDIA_DIRECTORY.'/.thumbnail/image'.$image['image_id'].'.'.$ext . "','".stripslashes($image['title'])."','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=".$width.",height=".$height.",left=125,top=100'); return false;\">"
But there are extra slashes and quote marks in there and I am too dumb to figure out what to delete in order to make it regular html...
Any help?